-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.envrc.json
More file actions
386 lines (386 loc) · 14.5 KB
/
.envrc.json
File metadata and controls
386 lines (386 loc) · 14.5 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
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
{
"spec": [
{
"name": "ADMIN_JWT_SECRET",
"description": "Secret for signing JSON Web Tokens for the Strapi Dashboard",
"required": true,
"valueType": "base64",
"secret": true,
"example": "pIUa5y9fIImYq2Nf92AUEw=="
},
{
"name": "JWT_SECRET",
"description": "Secret for signing JSON Web Tokens for the Strapi API",
"required": true,
"valueType": "base64",
"secret": true,
"example": "pIUa5y9fIImYq2Nf92AUEw=="
},
{
"name": "OPEN_FORMS_SDK_URL",
"description": "URL for the Open Forms SDK JavaScript file. See: https://open-forms.readthedocs.io/en/stable/developers/embedding.html",
"required": false,
"valueType": "url",
"example": "http://localhost:8000/static/sdk/open-forms-sdk.js",
"developmentDefault": "http://localhost:8000/static/sdk/open-forms-sdk.js"
},
{
"name": "OVERIGE_OBJECTEN_API_PORT",
"description": "Port number for the Overige Objecten API. This is used to access the Overige Objecten API from the frontend.",
"required": false,
"valueType": "port-number",
"example": "4001",
"developmentDefault": "4001"
},
{
"name": "OVERIGE_OBJECTEN_API_URL",
"description": "URL for the Overige Objecten API. This is used to access the Overige Objecten API from the frontend.",
"required": false,
"valueType": "url",
"example": "http://localhost:4001/api/v2",
"developmentDefault": "http://localhost:4001/api/v2"
},
{
"name": "OVERIGE_OBJECTEN_API_CORS",
"description": "CORS settings for the Overige Objecten API. This is used to access the Overige Objecten API from the frontend.",
"required": false,
"valueType": "url",
"example": "http://localhost:8000"
},
{
"name": "STRAPI_ADMIN_EXTENSIONS_PORT",
"description": "Port number for the Strapi Admin Extensions. This is used to access the Strapi Admin Extensions from the frontend.",
"required": false,
"valueType": "port-number",
"example": "4002",
"developmentDefault": "4002"
},
{
"name": "API_TOKEN_SALT",
"description": "Salt for generating API tokens. See: https://docs.strapi.io/dev-docs/configurations/api-tokens",
"required": true,
"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,
"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,
"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,
"valueType": "hostname",
"example": "0.0.0.0",
"developmentDefault": "0.0.0.0"
},
{
"name": "DATABASE_NAME",
"description": "Database name where your SQL tables are at.",
"required": true,
"valueType": "string",
"example": "my_database",
"developmentDefault": "postgres"
},
{
"name": "DATABASE_PORT",
"description": "Database port number or container name. When using Docker, this can be the container name instead of a port number.",
"required": true,
"valueType": "string",
"example": "pdc_strapi_db",
"developmentDefault": "pdc_strapi_db"
},
{
"name": "DATABASE_SSL",
"description": "Enable SSL to use an encrypted connection. Typically `false` during development, and `true` in production.",
"required": true,
"valueType": "string",
"examples": ["true", "false"],
"developmentDefault": "false"
},
{
"name": "DATABASE_USERNAME",
"description": "Username for your database.",
"required": true,
"valueType": "string",
"example": "postgres",
"developmentDefault": "postgres"
},
{
"name": "DATABASE_PASSWORD",
"description": "Password for your database user.",
"required": true,
"valueType": "string",
"secret": true,
"developmentDefault": "root"
},
{
"name": "FRONTEND_PUBLIC_URL",
"description": "URL where the preview of pages in the Strapi Dashboard are hosted. You can use the Docker container name as the URL, for example: http://pdc_frontend:3000.",
"required": true,
"valueType": "url",
"developmentDefault": "http://pdc_frontend:3000"
},
{
"name": "HOST",
"description": "Strapi Dashboard hostname where users will access Strapi. Use `0.0.0.0` to respond to any hostname.",
"required": true,
"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,
"valueType": "string",
"examples": ["development", "production"],
"developmentDefault": "production"
},
{
"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,
"valueType": "string",
"example": "admin@admin.com",
"developmentDefault": "admin@admin.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,
"valueType": "string",
"developmentDefault": "root",
"example": "root"
},
{
"name": "PORT",
"description": "Strapi Dashboard port number.",
"valueType": "number",
"required": true,
"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": "base64",
"developmentDefault": "SGVsbG8sIHdvcmxkIQ=="
},
{
"name": "STRAPI_PRIVATE_URL",
"description": "URL where Strapi is available on the internal network, for example to access the GraphQL API. You can use the Docker container name, e.g. http://pdc_strapi:1337.",
"required": true,
"example": "http://pdc_strapi:1337",
"developmentDefault": "http://pdc_strapi:1337"
},
{
"name": "STRAPI_PUBLIC_URL",
"description": "URL where Strapi is available to the public. You can use the Docker container name, e.g. http://pdc_strapi:1337.",
"required": true,
"valueType": "url",
"example": "http://pdc_strapi:1337",
"developmentDefault": "http://pdc_strapi: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": false,
"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,
"example": "https://example.com https://api.example.com",
"valueType": "url"
},
{
"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",
"valueType": "url"
},
{
"name": "CSP_FORM_ACTION_URLS",
"description": "Space-separated list of URLs to allow in `Content-Security-Policy` for `form-action`",
"required": false,
"valueType": "url"
},
{
"name": "CSP_FRAME_SRC_URLS",
"description": "Space-separated list of URLs to allow in `Content-Security-Policy` for `frame-src`",
"required": false,
"valueType": "url"
},
{
"name": "CSP_IMG_SRC_URLS",
"description": "Space-separated list of URLs to allow in `Content-Security-Policy` for `img-src`",
"required": false,
"valueType": "url"
},
{
"name": "CSP_SCRIPT_SRC_URLS",
"description": "Space-separated list of URLs to allow in `Content-Security-Policy` for `script-src`",
"required": false,
"valueType": "url",
"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/",
"valueType": "url"
},
{
"name": "CSP_WORKER_SRC_URLS",
"description": "Space-separated list of URLs to allow in `Content-Security-Policy` for `worker-src`",
"required": false,
"valueType": "url"
},
{
"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,
"valueType": "url"
},
{
"name": "MATOMO_HOST",
"description": "URL where the Matomo is hosted",
"valueType": "url",
"required": false,
"example": "https://example.com",
"developmentDefault": "https://example.com"
},
{
"name": "MATOMO_CONTAINER_ID",
"description": "Container ID for the Matomo tracker API. See: https://matomo.org/faq/general/faq_19212/",
"required": false,
"valueType": "string",
"example": "36D0C594-E017-485B-B032-C436",
"developmentDefault": "36D0C594-E017-485B-B032-C436"
},
{
"name": "MATOMO_SITE_ID",
"description": "Website ID for the Matomo tracker API. See: https://matomo.org/faq/general/faq_19212/",
"required": false,
"valueType": "string",
"example": "36D0C594-E017-485B-B032-C436",
"developmentDefault": "36D0C594-E017-485B-B032-C436EC876E5B"
},
{
"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": "base64",
"example": "pIUa5y9fIImYq2Nf92AUEw==",
"developmentDefault": "pIUa5y9fIImYq2Nf92AUEw=="
},
{
"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/",
"valueType": "url"
},
{
"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",
"valueType": "url"
},
{
"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",
"valueType": "string"
},
{
"name": "PANDOSEARCH_API_URL",
"description": "See: https://developer.pandosearch.com/api/",
"required": false,
"valueType": "url",
"developmentDefault": "https://public.pandosearch.com/example.com/"
},
{
"name": "FLO_LEGAL_API_TOKEN",
"description": "API token for the Flo Legal API, used to access legal documents and templates.",
"required": false,
"secret": true,
"example": "xxxxxxxx",
"developmentDefault": "xxxxxxxx",
"valueType": "string"
},
{
"name": "FLO_LEGAL_API_URL",
"description": "URL for the Flo Legal API, used to access legal documents and templates.",
"required": false,
"valueType": "url",
"example": "https://example.com/api"
},
{
"name": "KCM_SURVEY_API_KEY",
"description": "API key for the KCM Survey widget, used to authenticate requests to the KCM survey service.",
"required": false,
"secret": true,
"valueType": "string",
"example": "add-your-api-key"
},
{
"name": "KCM_SURVEY_STYLESHEETS_LINK",
"description": "URL for the custom stylesheet for the KCM Survey widget (e.g., https://www.utrecht.nl/fileadmin/kcm-radio.css).",
"required": false,
"valueType": "url",
"example": "https://www.utrecht.nl",
"developmentDefault": "https://www.utrecht.nl"
},
{
"name": "KCM_SURVEY_ID",
"description": "Survey ID for the KCM Survey widget, used to identify which survey to display.",
"required": false,
"valueType": "string",
"example": "add-kcm-survey-id"
},
{
"name": "KCM_SURVEY_URL",
"description": "Base URL for the KCM Survey service where the survey widget is hosted.",
"required": false,
"valueType": "url",
"example": "https://viewer.kcmg.nl/",
"developmentDefault": "https://viewer.kcmg.nl/"
},
{
"name": "STRAPI_API_TOKEN",
"description": "API token for the Strapi CMS, used to authenticate requests to the Strapi REST or GraphQL API.",
"required": false,
"secret": true,
"valueType": "string",
"example": "strapiToken_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
}
]
}