fablib:app

This commit is contained in:
Kenneth Reitz
2013-08-15 02:29:30 -04:00
parent 7ccb29f72b
commit d68d9c446a
2 changed files with 10 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
web: gunicorn fablib:app
+9
View File
@@ -0,0 +1,9 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello():
return 'Hello World!'
if __name__ == '__main__':
app.run()