-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy path.env.example
More file actions
73 lines (60 loc) · 2.05 KB
/
.env.example
File metadata and controls
73 lines (60 loc) · 2.05 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# DATABASE CONFIGURATION
# Option 1: Individual database variables (recommended)
APP_DB_HOST='localhost'
APP_DB_PORT='5434'
APP_DB_USER='lifecycle'
APP_DB_PASSWORD='lifecycle'
APP_DB_NAME='lifecycle'
APP_DB_SSL='false'
# Option 2: Legacy DATABASE_URL format (for backward compatibility)
# DEPRECATED: This format will be removed in future releases. Please use individual APP_DB_* variables above.
# You need the production db password below
# DATABASE_URL='postgresql://lifecycle:<password>@localhost:5432/lifecycle'
# You may need to update the port
DATABASE_URL='postgresql://lifecycle:lifecycle@localhost:5434/lifecycle'
# REDIS CONFIGURATION
# Option 1: Individual Redis variables (recommended)
APP_REDIS_HOST='localhost'
APP_REDIS_PORT='6379'
APP_REDIS_PASSWORD=''
APP_REDIS_TLS='false'
# Option 2: Legacy REDIS_URL format (for backward compatibility)
# DEPRECATED: This format will be removed in future releases. Please use individual APP_REDIS_* variables above.
REDIS_URL='redis://localhost:6379'
# GITHUB
# This is all created while you're creating your GitHub App and Test repository
GITHUB_CLIENT_SECRET=
GITHUB_WEBHOOK_SECRET=
# This is a long stringified key generated from the GitHub App
GITHUB_PRIVATE_KEY=
GITHUB_APP_ID=
MAX_GITHUB_API_REQUEST=1
GITHUB_API_REQUEST_INTERVAL=60000
GITHUB_APP_INSTALLATION_ID=
GITHUB_APP_NAME=
GITHUB_CLIENT_ID=
# An additional callback URL to be included in the newly created GitHub App
# configuration. This URL is specifically required for the external
# Identity Provider (e.g. Keycloak) to enable user authentication via GitHub
GITHUB_APP_AUTH_CALLBACK='https://auth.example.com/realms/lifecycle/broker/github/endpoint'
# CODEFRESH
CODEFRESH_API_KEY=
# NGROK
NGROK_AUTHTOKEN=
NGROK_LIFECYCLE_DOMAIN=
ENVIRONMENT='dev'
APP_ENV='development'
LIFECYCLE_MODE='all'
LIFECYCLE_UI_URL=
PORT='3000'
FASTLY_TOKEN='1234'
# DATADOG
DD_VERSION='lifecycle'
DD_ENV='development'
DD_SERVICE='lifecycle-job'
# KEYCLOAK
KEYCLOAK_ISSUER=
KEYCLOAK_CLIENT_ID=
KEYCLOAK_JWKS_URL=
# CORS
ALLOWED_ORIGINS='https://example.com,https://staging.example.com'