Skip to content

Instantly share code, notes, and snippets.

View snosrap's full-sized avatar

snosrap snosrap

View GitHub Profile
@snosrap
snosrap / gist:1791618
Created February 10, 2012 18:51 — forked from defnull/gist:1224387
Deploy a Bottle app on Heroku
mkdir heroku
cd heroku/
virtualenv --no-site-packages env
source env/bin/activate
pip install bottle
pip freeze > requirements.txt
cat >app.py <<EOF
import bottle, os