💄 use alert boxes for notes

This commit is contained in:
DrMaxNix 2024-09-07 13:30:32 +02:00
parent 8cfeeedf6a
commit 9909994668

View File

@ -22,9 +22,11 @@ services:
$ docker compose up -d $ docker compose up -d
``` ```
> ▶️ For both variants, persistent config files and user data will be stored in the `./data` directory. Feel free to change this to your needs. > [!TIP]
> For both variants, persistent config files and user data will be stored in the `./data` directory. Feel free to change this to your needs.
> ▶️ With this setup, the server will publicly listen on port 8080 via unencrypted http. When using in production, make sure to use a reverse proxy to add ssl functionality! > [!IMPORTANT]
> With this setup, the server will publicly listen on port 8080 via unencrypted http. When using in production, make sure to use a reverse proxy to add ssl functionality!
## User Management ## User Management
Create initial admin account: Create initial admin account:
@ -32,4 +34,5 @@ Create initial admin account:
$ docker compose exec main .venv/bin/python3 ./manage.py createsuperuser $ docker compose exec main .venv/bin/python3 ./manage.py createsuperuser
``` ```
> ▶️ If you are using docker run, replace `docker compose exec main` with `docker exec -it etebase`. > [!NOTE]
> If you are using docker run, replace `docker compose exec main` with `docker exec -it etebase`.