generated from princhcanal/nestjs-nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
37 lines (37 loc) · 1.05 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
37
{
"name": "Teknoy EMS",
"description": "An event management system used by the staff of Cebu Institute of Technology - University",
"repository": "https://github.com/citu-cpe/teknoy-ems",
"website": "https://teknoy-ems.vercel.app",
"addons": ["heroku-postgresql:hobby-dev"],
"environments": {
"review": {
"addons": ["heroku-postgresql:hobby-dev"]
}
},
"env": {
"JWT_ACCESS_TOKEN_SECRET": {
"description": "Secret for access token",
"generator": "secret"
},
"JWT_ACCESS_TOKEN_EXPIRATION_TIME": "86400",
"JWT_REFRESH_TOKEN_SECRET": {
"description": "Secret for refresh token",
"generator": "secret"
},
"JWT_REFRESH_TOKEN_EXPIRATION_TIME": "31540000",
"PROJECT_PATH": "backend",
"ACTIVE_PROFILES": "test_data",
"FRONTEND_URL": "http://localhost:3000",
"EMAIL_USERNAME": "teampnrn@gmail.com",
"EMAIL_PASSWORD": "soppysknponsqjow"
},
"buildpacks": [
{
"url": "https://github.com/timanovsky/subdir-heroku-buildpack"
},
{
"url": "heroku/nodejs"
}
]
}