-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
41 lines (29 loc) · 1.62 KB
/
.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
33
34
35
36
37
38
39
40
41
# Environment variables declared in this file are automatically made available to Prisma.
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema
# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings
# Make sure not to wrap it in quotations. idk why but prisma is acting up when you do.
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres?schema=public
# The backend to use for authentication. Depending on the backend chosen
# you have to configure the environment variables accordingly (OIDC_*, SAML_*)
#
# Possible values: `oidc`, `saml`
# Redirect URL is https://your-webui-domain.com/auth/AUTH_BACKEND
AUTH_BACKEND=oidc
# The name of the OIDC identity provider (e.g., 'Google', 'GitHub')
OIDC_NAME=YourIdentityProviderName
# The client ID assigned by the OIDC identity provider
OIDC_CLIENT_ID=YourClientIdHere
# The client secret assigned by the OIDC identity provider
OIDC_CLIENT_SECRET=YourClientSecretHere
# The URL to request OIDC tokens
OIDC_TOKEN_URL=https://example.com/OIDC/token
# The URL to logout the user
OIDC_LOGOUT_URL=https://example.com/OIDC/end_session
# The URL for user authorization to grant access
OIDC_AUTHORIZATION_URL=https://example.com/OIDC/authorize
# The URL to use for token verification
OIDC_INTROSPECT_URL=https://excample.com/OIDC/introspect
# Scopes requested for OIDC (comma-separated values, e.g., 'profile,email')
OIDC_SCOPES=profile,email
DEBUG=false