Django Back-End for the ParkWorkingSpaces App.
- Install Python
- Install the requirements:
pip install -r requirements.txt
- Install PostgreSQL
- Setup a database and a user
- Configure the database values in
pws/settings.py
accordingly - Setup the database tables:
python manage.py migrate
- Fill the database with initial static data:
python manage.py loaddata tables.json
- Run the server:
python manage.py runserver