Hideout/hideout-mastodon/templates/libraries/spring-boot
usbharu 23507f1812 chore: coreからmastodonにテンプレートを移動 2024-06-03 00:44:43 +09:00
..
README.mustache chore: coreからmastodonにテンプレートを移動 2024-06-03 00:44:43 +09:00
application.mustache chore: coreからmastodonにテンプレートを移動 2024-06-03 00:44:43 +09:00
buildGradle-sb3-Kts.mustache chore: coreからmastodonにテンプレートを移動 2024-06-03 00:44:43 +09:00
buildGradleKts.mustache chore: coreからmastodonにテンプレートを移動 2024-06-03 00:44:43 +09:00
defaultBasePath.mustache chore: coreからmastodonにテンプレートを移動 2024-06-03 00:44:43 +09:00
pom-sb3.mustache chore: coreからmastodonにテンプレートを移動 2024-06-03 00:44:43 +09:00
pom.mustache chore: coreからmastodonにテンプレートを移動 2024-06-03 00:44:43 +09:00
settingsGradle.mustache chore: coreからmastodonにテンプレートを移動 2024-06-03 00:44:43 +09:00
springBootApplication.mustache chore: coreからmastodonにテンプレートを移動 2024-06-03 00:44:43 +09:00
swagger-ui.mustache chore: coreからmastodonにテンプレートを移動 2024-06-03 00:44:43 +09:00

README.mustache

# {{title}}{{^title}}Generated Kotlin Spring Boot App{{/title}}

This Kotlin based [Spring Boot](https://spring.io/projects/spring-boot) application has been generated using the [OpenAPI Generator](https://github.com/OpenAPITools/openapi-generator).

## Getting Started

This document assumes you have either maven or gradle available, either via the wrapper or otherwise. This does not come with a gradle / maven wrapper checked in.

By default a [`pom.xml`](pom.xml) file will be generated. If you specified `gradleBuildFile=true` when generating this project, a `build.gradle.kts` will also be generated. Note this uses [Gradle Kotlin DSL](https://github.com/gradle/kotlin-dsl).

To build the project using maven, run:
```bash
mvn package && java -jar target/{{artifactId}}-{{artifactVersion}}.jar
```

To build the project using gradle, run:
```bash
gradle build && java -jar build/libs/{{artifactId}}-{{artifactVersion}}.jar
```

If all builds successfully, the server should run on [http://localhost:8080/](http://localhost:{{serverPort}}/)