An open API service indexing awesome lists of open source software.

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

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/