1. Using Docker
Open terminal in the project directory, enter the following command:
docker-compose up --build
Now the app is available on 127.0.0.1:8000
2. Using Python
python -m pip install -U pip
python -m venv ./venv
venv/Scripts/activate
python -m pip install -U pip
python -m pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py loaddata fixtures/site_fixtures.json
python manage.py runserver
Now the app is available on 127.0.0.1:8000
