https://github.com/sanogotech/formationjavaspringbootfull
Code Formation JAVA Spring Boot : Heroku
https://github.com/sanogotech/formationjavaspringbootfull
heroku heroku-deployment spring spring-boot
Last synced: about 2 months ago
JSON representation
Code Formation JAVA Spring Boot : Heroku
- Host: GitHub
- URL: https://github.com/sanogotech/formationjavaspringbootfull
- Owner: sanogotech
- Created: 2020-10-24T19:48:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-25T14:20:17.000Z (over 5 years ago)
- Last Synced: 2025-04-03T10:44:26.028Z (about 1 year ago)
- Topics: heroku, heroku-deployment, spring, spring-boot
- Language: CSS
- Homepage:
- Size: 56.1 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Architecture monolithique vs Microservice
## Heroku CLI
```
* create new application on heroku
mvn clean install -Dmaven.test.skip=true
git push heroku master
cd target
heroku login
heroku plugins:install java
heroku buildpacks:clear --app APP_NAME
heroku run java -version --app APP_NAME
heroku deploy:jar my-app.jar --app APP_NAME
heroku logs --tail
```
## Web
** application.properties
** replace server.port=8080 with :
server.port=${PORT:8080}
- http://javaformation.herokuapp.com/