We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fd7929 commit 18905d6Copy full SHA for 18905d6
run.sh
@@ -2,5 +2,26 @@
2
3
source setenv.sh
4
5
-./mvnw
+function setupHeroku() {
6
+ heroku login
7
+ heroku ps
8
+}
9
10
+function runHerokuLocal() {
11
12
+ .mvnw clean install
13
+ heroku local web
14
+ heroku open
15
16
+
17
+function runDev() {
18
+ .mvnw
19
20
21
+function main() {
22
+ runDev
23
+ #setupHeroku
24
+ #runHerokuLocal
25
26
27
+main
0 commit comments