-
Notifications
You must be signed in to change notification settings - Fork 684
/
app.json
43 lines (43 loc) · 846 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
36
37
38
39
40
41
42
43
{
"addons": [
"heroku-postgresql"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-java"
}
],
"description": "Configuration for Heroku Review Apps for PullRequests on GitHub",
"env": {
"SPRING_DATASOURCE_DRIVER-CLASS-NAME": {
"required": true
},
"SPRING_DATASOURCE_PASSWORD": {
"required": true
},
"SPRING_DATASOURCE_TYPE": {
"required": true
},
"SPRING_DATASOURCE_URL": {
"required": true
},
"SPRING_DATASOURCE_USERNAME": {
"required": true
},
"SPRING_JPA_DATABASE-PLATFORM": {
"required": true
},
"SPRING_JPA_HIBERNATE_DDL-AUTO": {
"required": true
}
},
"formation": {
"web": {
"quantity": 1
}
},
"name": "spring-boot-vuejs",
"scripts": {
},
"stack": "heroku-18"
}