A sample forum created using django
This is a sample forum created using django. It mostly follows the instructions detailed here only with more update to date django version.
- Setup a new python environment following instructions on python docs https://docs.python.org/3/tutorial/venv.html.
- Install the necessaries packages using
pip install -r requirements.txt. - Run
python manage.py makemigrationsto created the database (this will be a sqlite db) - Once db has been created, run
python manage.py runserverto start the server.