-
Notifications
You must be signed in to change notification settings - Fork 106
/
app.json
32 lines (32 loc) · 858 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
{
"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",
"logo": "https://files.mike.works/courses/20/course_banner_20_square2x.png",
"success_url": "/",
"image": "heroku/node",
"scripts": {
"postdeploy": "rm -rf node_modules; NODE_ENV=development npm i; npm run build"
},
"env": {
"NODE_ENV": {
"description": "The node.js environment.",
"value": "development"
}
},
"addons": [{
"plan": "heroku-postgresql:hobby-dev",
"as": "DATABASE_URL",
"options": {
"version": "9.6"
}
}],
"buildpacks": [{
"url": "https://github.com/heroku/heroku-buildpack-nodejs#v83"
}]
}