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 070c0dc commit c0df22fCopy full SHA for c0df22f
docker/createApp.sh
100644
100755
@@ -0,0 +1,8 @@
1
+#!/bin/bash
2
+
3
+heroku create $1
4
5
+heroku addons:create heroku-postgresql --app $1
6
7
+heroku config:set SERVER_SSL_ENABLED=false --app $1
8
+heroku config:set SPRING_JPA_HIBERNATE_DDL-AUTO=update --app $1
docker/deployApp.sh
@@ -0,0 +1,11 @@
+cd ../backend
+mvn spring-boot:build-image -Dspring-boot.build-image.imageName=registry.heroku.com/$1/web
+docker push registry-host:registry.heroku.com/$1/web #alessandronuzziurjc/codeurjc-daw-2021-22-webapp3
9
+heroku container:release web -a $1
10
11
+heroku logs --tail -a $1
0 commit comments