Website/TestInstructions.md

473 B

First of change the Env variables in the .env and the docker-compose.yml file to your own values.

Then create the docker container and run it with the following command:

docker-compose up --build

This starts the Database
Then run the following command to create the database tables:

python manage.py migrate
python manage.py migrate --run-syncdb

At last, run the following command to start the server:

python manage.py runserver 3030