Created
November 14, 2012 10:43
-
-
Save toolness/4071475 to your computer and use it in GitHub Desktop.
shell syntax highlighting test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Initialize the virtual environment. | |
| $ source .virtualenv/bin/activate | |
| # Install heroku-specific dependencies. | |
| $ pip install -r requirements.txt | |
| # Heroku requires pushing master, so make a branch. | |
| $ git checkout -b master development | |
| $ heroku create | |
| $ heroku addons:add cleardb:ignite | |
| $ git push heroku master | |
| $ heroku run python manage.py syncdb | |
| $ heroku run python manage.py migrate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment