mkvirtualenv sfm git clone git@github.com:caravancoop/sfm.git cd sfm/sfm_pc Install the requirements:
pip install -r requirements.txt Create a database:
createdb sfm-db psql sfm-db -c "CREATE EXTENSION postgis;" export DATABASE_URL=postgis://localhost/sfm-db ./manage.py migrate --noinput Create an admin user:
./manage.py createsuperuser Start the web server:
./manage.py runserver Open http://127.0.0.1:8000/ and sign in with your email and password.
heroku apps:create Generate a secret key in Python:
from django.utils.crypto import get_random_string get_random_string(50, 'abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)')Add configuration variables (replace <SECRET-KEY>):
heroku config:set DJANGO_SECRET_KEY=<SECRET-KEY> Add a production tier PostgreSQL database ($50/mo) to use PostGIS (replace <DATABASE>):
heroku addons:create heroku-postgresql:standard-0 heroku pg:wait heroku pg:psql In the PostgreSQL shell, run:
CREATE EXTENSION postgis; To enable the geo buildpack for GeoDjango:
heroku config:add BUILDPACK_URL=https://github.com/ddollar/heroku-buildpack-multi.git Use Gemfury to access dependencies in private repositories:
heroku addons:create gemfury:hello Deploy:
git push heroku dev:master Setup the database:
heroku run python manage.py migrate --noinput Create an admin user:
heroku run python manage.py createsuperuser Open the website:
heroku open heroku config:get GEMFURY_URL cd ../complex_fields python setup.py sdist curl -F package=@dist/django-complex-fields-0.1.0.tar.gz $GEMFURY_URL Replace the --extra-index-url in requirements.txt with your GEMFURY_URL if necessary.