-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.env.dist
48 lines (36 loc) · 1.86 KB
/
.env.dist
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
42
43
44
45
46
47
48
# Sample .env.dist file for Airbroke
# Please rename this file to .env and fill in the appropriate values.
# no need to set these if using docker-compose, unless you want to go pgbouncer
# DATABASE_URL="postgresql://airbroke:airbroke@localhost:6432/airbroke-development?schema=public&pgbouncer=true"
# DIRECT_URL="postgresql://airbroke:airbroke@localhost:5432/airbroke-development?schema=public"
# Endpoint protection
AIRBROKE_CORS_ORIGINS="http://localhost:3000,https://my.browserapp.tld"
AIRBROKE_LOG_LEVEL='' # leave blank or set 'verbose'
# AI toolbox
AIRBROKE_OPENAI_API_KEY="sk-xxx"
AIRBROKE_OPENAI_ORGANIZATION=""
AIRBROKE_OPENAI_ENGINE="gpt-4o"
# authentication
AUTH_SECRET="replaceme" # A random string used to hash tokens, sign cookies and generate cryptographic keys.
AUTH_URL="http://localhost:3000" # The URL of your application, used for signing cookies and OAuth secrets, defaults to http://localhost:3000
AUTH_DEBUG="false"
AIRBROKE_GITHUB_ID=""
AIRBROKE_GITHUB_SECRET=""
AIRBROKE_GITHUB_ORGS="" # optional, if you want to restrict access to specific organization(s), comma separated
AIRBROKE_ATLASSIAN_ID=""
AIRBROKE_ATLASSIAN_SECRET=""
AIRBROKE_GOOGLE_ID=""
AIRBROKE_GOOGLE_SECRET=""
AIRBROKE_GOOGLE_DOMAINS="" # optional, if you want to restrict access to specific domain(s), comma separated
AIRBROKE_COGNITO_ID=""
AIRBROKE_COGNITO_SECRET=""
AIRBROKE_COGNITO_ISSUER="" # a URL, that looks like this: https://cognito-idp.{region}.amazonaws.com/{PoolId}
AIRBROKE_GITLAB_ID=""
AIRBROKE_GITLAB_SECRET=""
AIRBROKE_KEYCLOAK_ID=""
AIRBROKE_KEYCLOAK_SECRET=""
AIRBROKE_KEYCLOAK_ISSUER="" # issuer should include the realm e.g. https://my-keycloak-domain.com/realms/My_Realm
AIRBROKE_MICROSOFT_ENTRA_ID_CLIENT_ID=""
AIRBROKE_MICROSOFT_ENTRA_ID_CLIENT_SECRET=""
AIRBROKE_MICROSOFT_ENTRA_ID_ISSUER=""
AIRBROKE_CACHE="" # Set to 'true' to enable resource caching (experimental)