Installing Requirements:
pip install -r requirements.txt
Using Postgresql instead of Sqlite as your database:
export DATABASE_URL='postgres:///tx_elevators'
If you don't have a database set up, DEBUG=1 make resetdb
will create one for
you. Running make scrape
will download a fresh copy of the CSV and import the
data. Afterwards, you can run manage.py geocode
to geocode the data.
Partial instructions for deploying to a hosted site on S3:
- Make sure you're not in debug mode.
- Make sure this project is running locally on
http://localhost:8000
. - Run
make site upload