Skip to content

Instantly share code, notes, and snippets.

@randomm
Forked from dusual/gist:9838932
Last active February 13, 2017 07:57
Show Gist options
  • Save randomm/53b909d5214680fa0a3a191841be3694 to your computer and use it in GitHub Desktop.
Save randomm/53b909d5214680fa0a3a191841be3694 to your computer and use it in GitHub Desktop.
mkdir heroku
cd heroku/
virtualenv --no-site-packages env
source env/bin/activate
pip install bottle gevent
pip freeze > requirements.txt
cat >app.py <<EOF
try:
import gevent.monkey
gevent.monkey.patch_all()
except:
pass
import bottle
import os
@bottle.route('/')
def index():
return "Hello World"
bottle.run(server='gevent', host='0.0.0.0', port=os.environ.get('PORT', 5000))
EOF
chmod a+x app.py
echo 'web: python app.py' > Procfile
echo 'env/' > .gitignore
git init
git add .
git commit -m "Initial commit"
heroku create
git push heroku master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment