-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.envrc.json
291 lines (291 loc) · 10.4 KB
/
.envrc.json
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
{
"spec": [
{
"name": "ADMIN_JWT_SECRET",
"description": "Secret for signing JSON Web Tokens for the Strapi Dashboard",
"required": true,
"type": "string",
"valueType": "base64",
"secret": true,
"example": "pIUa5y9fIImYq2Nf92AUEw=="
},
{
"name": "API_TOKEN_SALT",
"description": "Salt for generating API tokens. See: https://docs.strapi.io/dev-docs/configurations/api-tokens",
"required": true,
"type": "string",
"valueType": "base64",
"secret": true,
"example": "IC4EEAGXng5SMrQ/PLIG7w=="
},
{
"name": "APP_KEYS",
"description": "Strapi Dashboard session keys for the Users & Permissions plugin and the Documentation plugin. See: https://docs.strapi.io/dev-docs/configurations/server",
"required": true,
"type": "string",
"valueType": "base64-csv",
"secret": true,
"example": "HgsaHdyAo9hfQ0Fg8fsKpA==,wXd+qAHOW4SRbR66Xe1iXg==,kmzb3IBcHBSeR1yx5J0zbQ==,9dz6sBd8YqFIUxw0zCwEsQ==",
"developmentDefault": "HgsaHdyAo9hfQ0Fg8fsKpA==,wXd+qAHOW4SRbR66Xe1iXg==,kmzb3IBcHBSeR1yx5J0zbQ==,9dz6sBd8YqFIUxw0zCwEsQ=="
},
{
"name": "DATABASE_CLIENT",
"description": "Type of database to use for Strapi. See: https://docs.strapi.io/dev-docs/configurations/database",
"required": true,
"type": "string",
"valueType": "hostname",
"examples": ["postgres", "sqlite3", "better-sqlite3", "mysql", "mysql2"],
"developmentDefault": "postgres"
},
{
"name": "DATABASE_HOST",
"description": "Database hostname. When using Docker, this must be the hostname in the internal network. In Docker Compose the default is the name of the service.",
"required": true,
"type": "string",
"valueType": "hostname",
"example": "localhost",
"developmentDefault": "localhost"
},
{
"name": "DATABASE_NAME",
"description": "Database name where your SQL tables are at.",
"required": true,
"type": "string",
"example": "my_database",
"developmentDefault": "strapi"
},
{
"name": "DATABASE_PORT",
"description": "Database port number",
"required": true,
"type": "number",
"valueType": "port-number",
"example": "5432",
"developmentDefault": "5432"
},
{
"name": "DATABASE_SSL",
"description": "Enable SSL to use an encrypted connection. Typically `false` during development, and `true` in production.",
"required": true,
"type": "boolean",
"examples": ["true", "false"],
"developmentDefault": "false"
},
{
"name": "DATABASE_USERNAME",
"description": "Username for your database.",
"required": true,
"type": "boolean",
"example": "postgres",
"developmentDefault": "postgres"
},
{
"name": "DATABASE_PASSWORD",
"description": "Password for your database user.",
"required": true,
"type": "string",
"valueType": "new-password",
"secret": true
},
{
"name": "FRONTEND_PUBLIC_URL",
"description": "URL where the preview of pages in the Strapi Dashboard are hosted. As default you can use the URL for the public website.",
"required": true,
"type": "string",
"valueType": "url",
"example": "http://localhost:3000",
"developmentDefault": "http://localhost:3000"
},
{
"name": "HOST",
"description": "Strapi Dashboard hostname where users will access Strapi. Use `0.0.0.0` to respond to any hostname.",
"required": true,
"type": "string",
"valueType": "hostname",
"example": "0.0.0.0",
"developmentDefault": "0.0.0.0"
},
{
"name": "NODE_ENV",
"description": "Enable production mode for Node.js. See: https://nodejs.org/en/learn/getting-started/nodejs-the-difference-between-development-and-production",
"required": true,
"type": "string",
"examples": ["development", "production"],
"developmentDefault": "development"
},
{
"name": "PGADMIN_DEFAULT_EMAIL",
"description": "E-mail address for the initial administrator account. See: https://www.pgadmin.org/docs/pgadmin4/development/container_deployment.html",
"required": true,
"type": "string",
"example": "admin@example.com",
"developmentDefault": "admin@example.com"
},
{
"name": "PGADMIN_DEFAULT_PASSWORD",
"description": "Password for the initial administrator account. See: https://www.pgadmin.org/docs/pgadmin4/development/container_deployment.html",
"required": true,
"secret": true,
"type": "string",
"valueType": "new-password",
"example": "admin"
},
{
"name": "PORT",
"description": "Strapi Dashboard port number.",
"type": "number",
"example": "1337",
"developmentDefault": "1337"
},
{
"name": "PREVIEW_SECRET_TOKEN",
"description": "Configure Strapi Dashboard and the website with the same secret, to be able to show unpublished content in preview mode.",
"required": true,
"secret": true,
"valueType": "new-password",
"example": "b7b0a9aa-0ea2-47d5-bb1b-f81a2f2cf25e"
},
{
"name": "STRAPI_PRIVATE_URL",
"description": "URL where Strapi is available on the internal network, for example to access the GraphQL API.",
"required": true,
"example": "http://localhost:1337",
"developmentDefault": "http://localhost:1337"
},
{
"name": "STRAPI_PUBLIC_URL",
"description": "URL where Strapi is available to the public.",
"required": true,
"example": "http://localhost:1337",
"developmentDefault": "http://localhost:1337"
},
{
"name": "TRANSFER_TOKEN_SALT",
"description": "Salt for generating Transfer tokens. If no transfer token salt is defined, transfer features will be disabled. See: https://docs.strapi.io/user-docs/settings/transfer-tokens",
"required": true,
"secret": true,
"valueType": "base64",
"example": "HtHorFUigcXPMtDF/kAHcQ=="
},
{
"name": "CSP_CONNECT_SRC_URLS",
"description": "Space-separated list of URLs to allow in `Content-Security-Policy` for `connect-src`",
"required": false
},
{
"name": "CSP_FONT_SRC_URLS",
"description": "Space-separated list of URLs to allow in `Content-Security-Policy` for `font-src`",
"required": false,
"example": "https://fonts.googleapis.com https://fonts.gstatic.com"
},
{
"name": "CSP_FORM_ACTION_URLS",
"description": "Space-separated list of URLs to allow in `Content-Security-Policy` for `form-action`",
"required": false
},
{
"name": "CSP_FRAME_SRC_URLS",
"description": "Space-separated list of URLs to allow in `Content-Security-Policy` for `frame-src`",
"required": false
},
{
"name": "CSP_IMG_SRC_URLS",
"description": "Space-separated list of URLs to allow in `Content-Security-Policy` for `img-src`",
"required": false
},
{
"name": "CSP_SCRIPT_SRC_URLS",
"description": "Space-separated list of URLs to allow in `Content-Security-Policy` for `script-src`",
"required": false,
"example": "https://unpkg.com/@utrecht/ https://unpkg.com/@nl-design-system/"
},
{
"name": "CSP_STYLE_SRC_URLS",
"description": "Space-separated list of URLs to allow in `Content-Security-Policy` for `style-src`",
"required": false,
"secret": false,
"example": "https://unpkg.com/@utrecht/ https://unpkg.com/@nl-design-system/"
},
{
"name": "CSP_WORKER_SRC_URLS",
"description": "Space-separated list of URLs to allow in `Content-Security-Policy` for `worker-src`",
"required": false
},
{
"name": "OGONE_PAYMENT_SERVICE_URL",
"description": "URL of the Ogone payment form target. Typically you will use different values for acceptance and production.",
"required": false
},
{
"name": "MATOMO_HOST",
"description": "URL where the Matomo is hosted",
"valueType": "url",
"required": false,
"example": "https://stats.example.com"
},
{
"name": "MATOMO_SITE_ID",
"description": "Website ID for the Matomo tracker API. See: https://matomo.org/faq/general/faq_19212/",
"required": false
},
{
"name": "OPEN_FORMS_API_TOKEN",
"description": "Open Forms API token, used to access access forms from the website and the Strapi Dashboard. See: https://open-forms.readthedocs.io/en/stable/configuration/general/cms_integration.html",
"required": false,
"secret": true,
"valueType": "current-password"
},
{
"name": "OPEN_FORMS_API_URL",
"description": "URL for the Open Forms v2 API. See: https://open-forms.readthedocs.io/en/stable/developers/embedding.html",
"required": false,
"developmentDefault": "http://localhost:8000/api/v2/"
},
{
"name": "OPEN_FORMS_CSS_URL",
"description": "URL for the Open Forms SDK CSS file. See: https://open-forms.readthedocs.io/en/stable/developers/embedding.html",
"required": false,
"developmentDefault": "http://localhost:8000/static/sdk/open-forms-sdk.css"
},
{
"name": "PANDOSEARCH_API_URL",
"description": "URL for the Open Forms SDK JavaScript file. See: https://open-forms.readthedocs.io/en/stable/developers/embedding.html",
"required": false,
"developmentDefault": "http://localhost:8000/static/sdk/open-forms-sdk.js"
},
{
"name": "STRAPI_ENV_LABEL",
"description": "Text describing the environment, used to warn users of Strapi Dashboard when they are not working in production. Can not be localized.",
"required": false,
"developmentDefault": "Development"
},
{
"name": "PANDOSEARCH_API_URL",
"description": "See: https://developer.pandosearch.com/api/",
"required": false,
"example": "https://public.pandosearch.com/example.com/"
},
{
"name": "SURVEY_RUN_URL",
"example": "https://viewer.example.com",
"type": "string",
"valueType": "url",
"description": "",
"required": false
},
{
"name": "SURVEY_RUN_APIKEY",
"description": "",
"required": false,
"example": "",
"type": "string"
},
{
"name": "SURVEY_RUN_GUID",
"description": "",
"required": false,
"example": "",
"type": "string"
}
]
}