File tree Expand file tree Collapse file tree 4 files changed +11
-10
lines changed Expand file tree Collapse file tree 4 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 1
- web : java $JAVA_OPTS -Dspring.profiles.active=heroku -jar target/dependency/webapp-runner.jar --port $PORT target/* .war
1
+ #web: java $JAVA_OPTS -Dspring.profiles.active=heroku -jar target/dependency/webapp-runner.jar --port $PORT target/*.war
2
+ web : java $JAVA_OPTS -Dspring.profiles.active=heroku -jar target/dependency/webapp-runner.jar --port $PORT target/* .war
Original file line number Diff line number Diff line change 720
720
<artifactId >spring-boot-maven-plugin</artifactId >
721
721
<configuration >
722
722
<profiles >
723
- <profile >heroku </profile >
723
+ <profile >default </profile >
724
724
</profiles >
725
725
</configuration >
726
726
<executions >
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ function runHerokuLocal() {
15
15
}
16
16
17
17
function runDev() {
18
- ./mvnw
18
+ ./mvnw clean install
19
19
}
20
20
21
21
function main() {
Original file line number Diff line number Diff line change 7
7
min-response-size : 2048
8
8
spring :
9
9
datasource :
10
- url : jdbc:postgresql://localhost:5432/simpleworklist
10
+ url : jdbc:postgresql://localhost:5432// simpleworklist
11
11
username : simpleworklist
12
12
password : simpleworklistpwd
13
13
driverClassName : org.postgresql.Driver
86
86
spring :
87
87
profiles : default
88
88
datasource :
89
- url : jdbc:postgresql://localhost:5433 /simpleworklist
89
+ url : jdbc:postgresql://localhost:5432 /simpleworklist
90
90
---
91
91
spring :
92
92
profiles : developing
93
93
datasource :
94
- url : jdbc:postgresql://localhost:5433 /simpleworklist_developing
94
+ url : jdbc:postgresql://localhost:5432 /simpleworklist_developing
95
95
jpa :
96
96
hibernate :
97
97
ddl-auto : update
@@ -100,7 +100,7 @@ spring:
100
100
spring :
101
101
profiles : travis
102
102
datasource :
103
- url : jdbc:postgresql://localhost:5433 /simpleworklist_travis
103
+ url : jdbc:postgresql://localhost:5432 /simpleworklist_travis
104
104
continue-on-error : true
105
105
jpa :
106
106
show-sql : false
@@ -114,7 +114,7 @@ server:
114
114
spring :
115
115
profiles : testing
116
116
datasource :
117
- url : jdbc:postgresql://localhost:5433 /simpleworklist_testing
117
+ url : jdbc:postgresql://localhost:5432 /simpleworklist_testing
118
118
jpa :
119
119
show-sql : false
120
120
hibernate :
@@ -150,7 +150,7 @@ logging:
150
150
spring :
151
151
profiles : qa
152
152
datasource :
153
- url : jdbc:postgresql://localhost:5433 /simpleworklist_qa
153
+ url : jdbc:postgresql://localhost:5432 /simpleworklist_qa
154
154
continue-on-error : true
155
155
jpa :
156
156
show-sql : false
@@ -187,7 +187,7 @@ logging:
187
187
spring :
188
188
profiles : heroku
189
189
datasource :
190
- url : jdbc:postgresql://localhost:5433 /simpleworklist_heroku
190
+ url : jdbc:postgresql://localhost:5432 /simpleworklist_heroku
191
191
continue-on-error : true
192
192
jpa :
193
193
show-sql : false
You can’t perform that action at this time.
0 commit comments