Skip to content

Instantly share code, notes, and snippets.

@yuvadm
Created March 17, 2012 22:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuvadm/2065828 to your computer and use it in GitHub Desktop.
Save yuvadm/2065828 to your computer and use it in GitHub Desktop.
ep.io Bottle Deployment Template
from bottle import app, route
@route('/')
def index():
return 'Oh Hai!'
application = app()
[wsgi]
entrypoint = app:application
requirements = requirements.txt
-e git+https://github.com/defnull/bottle.git#egg=bottle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment