-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
45 lines (45 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
37
38
39
40
41
42
43
44
45
{
"name": "platformkit-api",
"description": "Generate a REST API from a Prisma schema & deploy any SSG.",
"repository": "https://github.com/platform-kit/platformkit-api",
"logo": "https://www.platformkit.com/logos/icon.png",
"keywords": [
"node",
"express",
"static",
"prisma",
"rest",
"api",
"jwt",
"ssg",
"database",
"github",
"heroku"
],
"env": {
"GITHUB_REPOSITORY": {
"description": "A Github repository containing a database schema and/or a static site generator.",
"required": true
},
"GITHUB_TOKEN": {
"description": "A Github token for accessing private repos.",
"required": false
},
"BUILD_COMMAND": {
"description": "A build command to run when deploying your repo.",
"required": false
},
"PUBLIC_DIRECTORY": {
"description": "The directory where your static files will be output by the build command.",
"required": false
},
"JWT_SECRET": {
"description": "A secret key for verifying the integrity of signed cookies.",
"generator": "secret"
},
"WEB_CONCURRENCY": {
"description": "The number of instances of this app that should run concurrently.",
"value": "1"
}
}
}