-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.schema.json
More file actions
37 lines (37 loc) · 889 Bytes
/
env.schema.json
File metadata and controls
37 lines (37 loc) · 889 Bytes
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
{
"type": "object",
"$id": "file:///env.schema.json",
"allOf": [
{
"$ref": "secrets.schema.json"
}
],
"properties": {
"CLOUDFLARE_ACCOUNT_ID": {
"type": "string",
"default": "5e0333335a21846798fafca9e55e044f",
"description": "CF Account ID"
},
"CLOUDFLARE_ZONE_ID": {
"type": "string",
"default": "1fdb113875a922922b03e3cebc7138f1",
"description": "CF Zone (domain) ID"
},
"POLYKEY_NETWORK_STATUS_HOST": {
"type": "string",
"default": "testnet.polykey.com",
"description": "PKNS Host"
},
"POLYKEY_NETWORK_STATUS_PORT": {
"type": "number",
"default": 443,
"description": "PKNS Port"
},
"POLYKEY_NETWORK_STATUS_PROT": {
"type": "string",
"default": "https",
"description": "PKNS Protocol"
}
},
"required": ["CLOUDFLARE_ACCOUNT_ID"]
}