Matches people to projects, aka "hacks," for colloboration during hack night events.
-
Fetch the code via git
-
Create a heroku app from the git dir:
cd projectdir/ heroku apps:create --stack cedar -
Do your initial push to heroku:
git push heroku master -
Run
syncdbto create tablesheroku run bounty/manage.py syncdb -
Apply migrations (see also below):
heroku run bounty/manage.py migrate board
Migrations should be versioned in the board app's migrations dir. Generate
migrations by running:
manage.py schemamigration board --auto
Check in the resulting migrate_*.py files.
When pushing an update including database migrations, you will want to apply them in your heroku instance:
heroku run bounty/manage.py migrate board