-
Notifications
You must be signed in to change notification settings - Fork 5
/
env.yml
73 lines (73 loc) · 2.34 KB
/
env.yml
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
LOCAL_MODE:
description: Run your development environment in local mode using stubbed data?
development_only: true
GITHUB_CLIENT_ID:
description: |-
The client ID for a GitHub OAuth application. Its callback URL should be
"http://localhost:3000".
GITHUB_CLIENT_SECRET:
description: The client secret for a GitHub OAuth application.
secret: true
GITHUB_API_TOKEN:
description: A personal access token for sending repository dispatch requests.
secret: true
local_mode: false
RUNNER_SHARED_SECRET:
description: |-
A secret shared with the control plane repository to authenticate
callbacks. This is arbitrary in local mode, but must be the shared
development value in advanced mode.
secret: true
local_mode: false
RUNNER_CALLBACK_URL:
description: |-
A URL to tell the control plane to call back to. This should be something
like an Ngrok proxy pointed to your local server.
local_mode: false
CONTROL_REPO_NWO:
description: The name-with-owner of the control plane repo to dispatch to.
local_mode: false
default: covid-modeling/dev-covid19-control-plane
CONTROL_REPO_EVENT_TYPE:
description: |-
The dispatch event to send to the control plane.
You can use "test-run-simulation" to kick off a dry run.
local_mode: false
default: run-simulation
BLOB_STORAGE_ACCOUNT:
description: The blob storage account, which should be in secret storage.
local_mode: false
BLOB_STORAGE_KEY:
description: The blob storage account key, which should be in secret storage.
secret: true
local_mode: false
BLOB_STORAGE_CONTAINER:
description: The blob storage container, which should be in secret storage.
local_mode: false
DB_USERNAME:
description: The username for the database.
default: user
DB_PASSWORD:
description: The password for the database.
secret: true
default: password
DB_HOST:
description: The host for the database.
default: 127.0.0.1
DB_DATABASE:
description: The database name.
default: github_covid_modelling_dev
OAUTH_SECRET:
description: |-
A secret used to sign OAuth state values. Use something such as `openssl
rand -hex 32` to generate it.
secret: true
generate:
secret: true
SESSION_SECRET:
description: |-
A secret used to sign session cookies. Use something such as `openssl
rand -hex 32` to generate it.
secret: true
generate:
secret: true