.env.example
582 bytes
| 1 | # Copy to .env and fill with strong values. NEVER commit .env. |
|---|---|
| 2 | # On the server, create .env in the repo root next to docker-compose.prod.yml. |
| 3 | |
| 4 | # Postgres password (db is not publicly exposed, but use a strong value anyway). |
| 5 | POSTGRES_PASSWORD=change-me-strong-db-password |
| 6 | |
| 7 | # JWT signing key — overrides JWT:Key in appsettings.json. Generate fresh: |
| 8 | # openssl rand -base64 48 |
| 9 | JWT_KEY=change-me-base64-key |
| 10 | |
| 11 | # Password for the seeded admin@taltech.ee account (first boot only). |
| 12 | # Must satisfy: upper + lower + digit + non-alphanumeric, length >= 6. |
| 13 | SEED_ADMIN_PASSWORD=Change.Me123! |
| 14 | |