Files
spring-boot-demo/readme.md
2024-10-07 13:14:50 +07:00

34 lines
736 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## Spring boot application
Demo приложение для изучения языка `kotlin` и фреймворка `spring boot`.
## Требования
* `jdk` версии `17`
* `postgresql` версии `14`
* `kafka` без авторизации
* `docker` + `compose`
## Доступные команды
* Запуск тестов
```shell
./gradlew test
```
* запуск приложения
```shell
./gradlew bootRun
```
## Запуск с docker-compose
Перед каждым запуском необходимо собрать приложение:
```shell
./gradlew assemble
```
Затем можно запускать контейнер:
```shell
docker compose up -d
```