forked from fictionco/fiction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
35 lines (35 loc) · 1 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
{
"name": "Factor CMS Example",
"description": "A basic Factor application",
"website": "https://factor.dev",
"repository": "https://github.com/fiction-com/factor",
"logo": "https://node-js-sample.herokuapp.com/node.png",
"keywords": ["factor", "cms", "vue", "typescript", "mongodb"],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-multi-procfile.git"
},
{
"url": "heroku/nodejs"
}
],
"env": {
"FACTOR_DB_CONNECTION": {
"description": "Demo MongoDB database (resets every half-hour)",
"value": "mongodb+srv://demo:[email protected]/demo?retryWrites=true&w=majority"
},
"FACTOR_AUTH_SECRET": {
"description": "JWT decoding secret. Used for authentication.",
"value": "CAN_BE_ANYTHING"
},
"BUILD_ENV": {
"value": "@factor/theme-alpha"
},
"PROCFILE": {
"value": "@apps/heroku/theme-alpha"
}
},
"scripts": {
"heroku-postbuild": "node ./@apps/heroku/build-heroku.js"
}
}