Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/idea2app/kotlin-spring-boot
Spring Boot project scaffold written in Kotlin, which is based on the Official Guide.
https://github.com/idea2app/kotlin-spring-boot
docker java kotlin scaffold spring
Last synced: 2 days ago
JSON representation
Spring Boot project scaffold written in Kotlin, which is based on the Official Guide.
- Host: GitHub
- URL: https://github.com/idea2app/kotlin-spring-boot
- Owner: idea2app
- Created: 2022-01-03T14:30:23.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-07T19:36:38.000Z (about 3 years ago)
- Last Synced: 2024-11-21T13:46:42.941Z (2 months ago)
- Topics: docker, java, kotlin, scaffold, spring
- Language: Kotlin
- Homepage: https://github.com/idea2app/Kotlin-Spring-Boot/pkgs/container/kotlin-spring-boot
- Size: 122 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Kotlin-Spring-Boot
[Spring Boot][1] project scaffold written in [Kotlin][2], which is based on the [Official Guide][3].
[![Release Docker image](https://github.com/idea2app/Kotlin-Spring-Boot/actions/workflows/release.yml/badge.svg)][4]
## Development environment
### Windows
```powershell
choco install kotlinc gradle -y
```### Mac OS X
```bash
brew install kotlin gradle
```## Local developing
### Running
```shell
./gradlew bootRun
```### Building
```shell
./gradlew build
docker build .
```## Release to GitHub registry
```shell
git tag vX.Y.Z HEAD
git push origin --tags
```## Reference
1. [Start Kotlin without IDE](https://tech-query.me/development/start-kotlin-without-ide/)
[1]: https://spring.io/
[2]: https://kotlinlang.org/
[3]: https://spring.io/guides/tutorials/spring-boot-kotlin/
[4]: https://github.com/idea2app/Kotlin-Spring-Boot/actions/workflows/release.yml