Skip to content

Instantly share code, notes, and snippets.

View mevinbabuc's full-sized avatar
🏠
Working from home

Mevin mevinbabuc

🏠
Working from home
View GitHub Profile
application: you-app-name-here
version: 1
runtime: python
api_version: 1
default_expiration: "30d"
handlers:
- url: /(.*\.(appcache|manifest))
mime_type: text/cache-manifest
@mevinbabuc
mevinbabuc / app.py
Created May 18, 2013 18:25
A short film uploading forum
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def landingPage():
return render_template('landingPage.html')
@app.route('/user/<username>')
def show_user_profile(username=None):