-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example-dev
More file actions
40 lines (33 loc) · 1.19 KB
/
.env.example-dev
File metadata and controls
40 lines (33 loc) · 1.19 KB
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
33
34
35
36
37
38
39
40
# Example environment variables for local development.
# Do NOT use this file for production deployments - instead use the
# .env.example file included in the deploy/docker file.
# Prisma (PostgreSQL by default)
DATABASE_URL="postgresql://rtap:rtap@localhost:5432/rtap"
TEST_DATABASE_URL="postgresql://rtap:rtap@localhost:5432/rtap_test"
# Initial User Creation
INITIAL_ADMIN_EMAIL="admin@example.com"
# Secure values: generate with `openssl rand -base64 32`
AUTH_SECRET="REPLACE_WITH_A_SECURE_RANDOM_VALUE"
# For Testing Only
# Cookies are marked secure only when AUTH_URL starts with https://
AUTH_URL=http://localhost:3000
AUTH_TRUST_HOST=true
# SSO Configuration
#GOOGLE_CLIENT_ID=
#GOOGLE_CLIENT_SECRET=
#GITHUB_CLIENT_ID=
#GITHUB_CLIENT_SECRET=
#GITLAB_CLIENT_ID=
#GITLAB_CLIENT_SECRET=
#KEYCLOAK_CLIENT_ID=
#KEYCLOAK_CLIENT_SECRET=
#KEYCLOAK_ISSUER=
#OKTA_CLIENT_ID=
#OKTA_CLIENT_SECRET=
#OKTA_ISSUER=
# Optional: enable demo login (default: disabled)
# Set to "true" to expose a demo admin login button on the sign-in screen.
# WARNING: This will allow login with to anyone who can acccess the page.
ENABLE_DEMO_MODE=false
# Optional: logging level (default: debug in dev, info in prod)
#LOG_LEVEL=info