-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.env.example
32 lines (25 loc) · 921 Bytes
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Run-time configuration
DATABASE_NAME=linkblocks
DATABASE_PORT=55432
DATABASE_URL=postgres://postgres@localhost:${DATABASE_PORT}/${DATABASE_NAME}
BASE_URL=https://127.0.0.1:4040
DEMO_MODE=false
ADMIN_USERNAME=
ADMIN_PASSWORD=
# Used for Single Sign On (SSO).
OIDC_CLIENT_ID=
OIDC_CLIENT_SECRET=
# Only used for spinning up a rauthy container in
# local dev environments
RAUTHY_PORT=55434
OIDC_ISSUER_URL=http://localhost:${RAUTHY_PORT}/auth/v1
OIDC_ISSUER_NAME=Rauthy
TLS_KEY=development_cert/localhost.key
TLS_CERT=development_cert/localhost.crt
RUST_LOG=linkblocks=debug,tower_http=debug,tower_http::trace::on_request=info,axum::rejection=trace
# These values are only relevant for compiling
SQLX_OFFLINE=true
# These values are only relevant for development
DATABASE_NAME_TEST=linkblocks_test
DATABASE_PORT_TEST=55433
DATABASE_URL_TEST=postgres://postgres@localhost:${DATABASE_PORT_TEST}/${DATABASE_NAME_TEST}