Django web app used to track seasonal produce based on location
-
Install necessary packages using:
pip install requirements.txt
-
Create the database structure:
./manage.py migrate
-
Migrate from any previous database structure versions (if necessary):
./manage.py makemigrations
-
For testing, load the test database fixture so there is data to test with:
./manage.py loaddata Produce
./manage.py loaddata Location
-
To start the server:
./manage.py runserver
-
The site will run locally @ http://localhost:8000/