476 B
476 B
Contributing
Migrations
If facing migration errors, delete the contents of all migrations
folders that are numerical (e.g. 0001_initial.py
) and delete the db.sqlite3
database file. Note you will lose all data.
To get started:
python manage.py makemigrations authentication
python manage.py makemigrations home
python manage.py migrate
Run the server
python manage.py runserver 0.0.0.0:8000
Access the website
http://localhost:8000