-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.json
36 lines (36 loc) · 1.23 KB
/
app.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
{
"name": "Hasura",
"env": {
"HASURA_GRAPHQL_DATABASE_URL": {
"description": "Postgres database URL",
"required": true
},
"HASURA_GRAPHQL_ENABLE_CONSOLE": {
"description": "Enable the Hasura Console (served by the server on / and /console) (default: false)",
"required": false,
"value": "false"
},
"HASURA_GRAPHQL_ADMIN_SECRET": {
"description": "Admin secret key, required to access this instance. This is mandatory when you use webhook or JWT.",
"required": false
},
"HASURA_GRAPHQL_DEV_MODE": {
"description": "Set dev mode for GraphQL requests; include the internal key in the errors extensions of the response (if required).",
"required": false,
"value": "false"
},
"HASURA_GRAPHQL_ENABLED_APIS": {
"description": "Comma separated list of APIs (options: metadata, graphql, pgdump) to be enabled. (default: metadata,graphql,pgdump)",
"required": false,
"value": "metadata,graphql,pgdump"
},
"ENABLE_MIGRATIONS": {
"description": "Enable the Hasura automatic migration when run container (default: false)",
"required": false,
"value": "false"
}
},
"options": {
"allow-unauthenticated": true
}
}