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/
|
/assets/node_modules/
|
||||||
|
|
||||||
.cursor
|
.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
|
run: install-dependencies start-database migrate-database seed-database
|
||||||
mix phx.server
|
mix phx.server
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -33,12 +33,14 @@ services:
|
||||||
|
|
||||||
rauthy:
|
rauthy:
|
||||||
container_name: rauthy-test
|
container_name: rauthy-test
|
||||||
image: ghcr.io/sebadob/rauthy:latest
|
image: ghcr.io/sebadob/rauthy:0.30.2
|
||||||
environment:
|
environment:
|
||||||
- LOCAL_TEST=true
|
- LOCAL_TEST=true
|
||||||
- SMTP_URL=mailcrab
|
- SMTP_URL=mailcrab
|
||||||
- SMTP_PORT=1025
|
- SMTP_PORT=1025
|
||||||
- SMTP_DANGER_INSECURE=true
|
- SMTP_DANGER_INSECURE=true
|
||||||
|
- LISTEN_SCHEME=http
|
||||||
|
- PUB_URL=localhost:8080
|
||||||
- BOOTSTRAP_ADMIN_PASSWORD_PLAIN=RauthyTest12345
|
- BOOTSTRAP_ADMIN_PASSWORD_PLAIN=RauthyTest12345
|
||||||
#- HIQLITE=false
|
#- HIQLITE=false
|
||||||
#- PG_HOST=db
|
#- PG_HOST=db
|
||||||
|
|
@ -54,7 +56,13 @@ services:
|
||||||
networks:
|
networks:
|
||||||
- rauthy-test
|
- rauthy-test
|
||||||
- local
|
- local
|
||||||
|
volumes:
|
||||||
|
- type: volume
|
||||||
|
source: rauthy-data
|
||||||
|
target: /app/data
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
postgres-data:
|
postgres-data:
|
||||||
|
rauthy-data:
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue