-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.json
35 lines (31 loc) · 992 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
33
34
35
{
"name": "Collaborative Markdown Editor",
"description": "A collaborative Markdown Editor to write documents with other people and share ideas",
"website": "https://collaborative-markdown-editor.herokuapp.com",
"repository": "https://github.com/mortenterhart/collaborative-markdown-editor",
"logo": "https://raw.githubusercontent.com/mortenterhart/collaborative-markdown-editor/master/frontend/src/assets/cmd_logo.png",
"scripts": {
"postdeploy": "./mvnw clean"
},
"env": {
"MAVEN_CUSTOM_OPTS": {
"value": "-P deployment -DskipTests -Dit.skipTests",
"description": "Maven options to build in deployment mode and to skip tests",
"required": true
}
},
"addons": [
"heroku-postgresql"
],
"buildpacks": [
{
"url": "heroku/java"
},
{
"url": "https://github.com/mortenterhart/heroku-buildpack-wildfly"
},
{
"url": "https://github.com/mortenterhart/heroku-buildpack-wildfly-postgresql"
}
]
}