Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gianluigip/spring-kotlin-heroku-example
Sample service to config Heroku CI/CD
https://github.com/gianluigip/spring-kotlin-heroku-example
Last synced: 19 days ago
JSON representation
Sample service to config Heroku CI/CD
- Host: GitHub
- URL: https://github.com/gianluigip/spring-kotlin-heroku-example
- Owner: gianluigip
- License: apache-2.0
- Created: 2021-09-24T09:46:59.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-09-24T11:21:08.000Z (over 3 years ago)
- Last Synced: 2024-11-13T12:02:44.607Z (2 months ago)
- Language: Kotlin
- Size: 65.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Spring Kotlin Heroku Example
Sample service to config Heroku CI/CD## Getting Started
* Download Spring starter from https://start.spring.io/.
* Add `system.properties` to define the java version:
```
java.runtime.version=11
```
* Add `Procfile` to define the start command:
```
web: java -jar build/libs/spring-kotlin-heroku-example-0.0.1-SNAPSHOT.jar
```
* Add `app.json` and add your app name and description:
```
{
"name": "Spring Kotlin Heroku Example",
"description": "Sample service to config Heroku CI/CD.",
"image": "heroku/gradle"
}
```
* Add `.env` if you need to manage environment variables.