-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathapp.json
41 lines (41 loc) · 1.07 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
{
"name": "mikeworks-sql",
"description": "Mike.Works SQL Fundaments / Pro Workshop",
"keywords": ["sql", "postgresql"],
"website": "https://mike.works/course/sql-fundamentals-ad811af",
"repository": "https://github.com/mike-works/sql-fundamentals#solutions-pro",
"logo": "https://files.mike.works/courses/20/course_banner_20_square2x.png",
"success_url": "/",
"image": "heroku/node",
"scripts": {
"postdeploy": "./scripts/heroku-postdeploy.sh"
},
"env": {
"NPM_CONFIG_PRODUCTION": {
"description": "Skip installing devDependencies (leave this as false)",
"value": "false"
},
"NODE_ENV": {
"description": "The node.js environment.",
"value": "development"
},
"DB_TYPE": {
"description": "'pg' for PostgreSQL, 'sqlite' for SQLite",
"value": "pg"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-basic",
"as": "DATABASE",
"options": {
"version": "9.6"
}
}
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs#v83"
}
]
}