review(env): shift secret to env file
This commit is contained in:
parent
bbb5fa0c69
commit
c43ed10fc4
3 changed files with 14 additions and 1 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -36,3 +36,6 @@ npm-debug.log
|
|||
/assets/node_modules/
|
||||
|
||||
.cursor
|
||||
|
||||
# Ignore the .env file with env variables
|
||||
.env
|
||||
|
|
|
|||
2
Justfile
2
Justfile
|
|
@ -1,3 +1,5 @@
|
|||
set dotenv-load := true
|
||||
|
||||
run: install-dependencies start-database migrate-database seed-database
|
||||
mix phx.server
|
||||
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue