-
Notifications
You must be signed in to change notification settings - Fork 3
/
config_schema.yaml
97 lines (76 loc) · 1.38 KB
/
config_schema.yaml
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
$schema: http://json-schema.org/draft-07/schema#
title: Deploy Config
type: object
required:
- github_url
- coronasafe_url
- site_url
- analytics_server_url
- header_logo
- main_logo
- gmaps_api_key
- gov_data_api_key
- recaptcha_site_key
- sentry_dsn
- sentry_environment
- kasp_enabled
- kasp_string
- kasp_full_string
- sample_format_asset_import
- sample_format_external_result_import
- enable_hcx
properties:
dashboard_url:
type: string
github_url:
type: string
coronasafe_url:
type: string
site_url:
type: string
analytics_server_url:
type: string
header_logo:
type: object
required:
- light
- dark
properties:
light:
type: string
dark:
type: string
main_logo:
type: object
required:
- light
- dark
properties:
light:
type: string
dark:
type: string
gmaps_api_key:
type: string
gov_data_api_key:
type: string
recaptcha_site_key:
type: string
sentry_dsn:
type: string
sentry_environment:
type: string
kasp_enabled:
type: boolean
kasp_string:
type: string
kasp_full_string:
type: string
sample_format_asset_import:
type: string
sample_format_external_result_import:
type: string
enable_hcx:
type: boolean
jwt_token_refresh_interval:
type: integer