Special case for creating a super user to make it a little cleaner

This commit is contained in:
Trenton H
2025-03-26 13:19:19 -07:00
parent b0723c13a3
commit c0d81430d9
10 changed files with 26 additions and 11 deletions

View File

@@ -143,13 +143,13 @@ account. The script essentially automatically performs the steps described in [D
execute the following command:
```shell-session
docker compose exec webserver ./manage.py createsuperuser
docker compose exec webserver createsuperuser
```
or using docker exec from within the container:
```shell-session
./manage.py createsuperuser
createsuperuser
```
This will guide you through the superuser setup.