cp .env.example .env
./start.sh
docker compose exec web django-admin startapp <app_name>
docker compose exec web django-admin startapp <app_name>
./stop.sh
# Access the web container
docker exec -it django-docker-web-1 /bin/bash
# Access the python shell
docker compose exec web python manage.py shell
# Create a superuser
docker compose exec web python manage.py migrate && docker compose run web python manage.py createsuperuser