forked from LATAMPARTS/autority-api-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
36 lines (36 loc) · 860 Bytes
/
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": "express-starter",
"env": {
"NODE_ENV": {
"description": "Environment where the application will run",
"value": "production"
},
"CORS_ALLOWED_ORIGIN": {
"description": "Allowed cors origins separated with comma",
"value": "http://localhost:3000"
},
"JWT_SECRET_KEY": {
"description": "Secret key for JWT",
"generator": "secret"
},
"DB_HOST": {
"description": "PostgreSQL database host"
},
"DB_PORT": {
"description": "PostgreSQL database port",
"value": "5432"
},
"DB_USER": {
"description": "PostgreSQL database user"
},
"DB_PASSWORD": {
"description": "PostgreSQL database user password"
},
"DB_NAME": {
"description": "PostgreSQL database name"
}
},
"options": {
"allow-unauthenticated": true
}
}