review(env): shift secret to env file

This commit is contained in:
carla 2025-06-24 09:52:17 +02:00 committed by Moritz
parent bbb5fa0c69
commit c43ed10fc4
Signed by: moritz
GPG key ID: 1020A035E5DD0824
3 changed files with 14 additions and 1 deletions

3
.gitignore vendored
View file

@ -36,3 +36,6 @@ npm-debug.log
/assets/node_modules/
.cursor
# Ignore the .env file with env variables
.env

View file

@ -1,3 +1,5 @@
set dotenv-load := true
run: install-dependencies start-database migrate-database seed-database
mix phx.server

View file

@ -33,12 +33,14 @@ services:
rauthy:
container_name: rauthy-test
image: ghcr.io/sebadob/rauthy:latest
image: ghcr.io/sebadob/rauthy:0.30.2
environment:
- LOCAL_TEST=true
- SMTP_URL=mailcrab
- SMTP_PORT=1025
- SMTP_DANGER_INSECURE=true
- LISTEN_SCHEME=http
- PUB_URL=localhost:8080
- BOOTSTRAP_ADMIN_PASSWORD_PLAIN=RauthyTest12345
#- HIQLITE=false
#- PG_HOST=db
@ -54,7 +56,13 @@ services:
networks:
- rauthy-test
- local
volumes:
- type: volume
source: rauthy-data
target: /app/data
volumes:
postgres-data:
rauthy-data: