Initial commit

This commit is contained in:
2022-09-07 00:24:01 +06:00
commit 8fe93e20bc
19 changed files with 531 additions and 0 deletions

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
#!make
.ONESHELL:
.PHONY:
clean:
./gradlew clean
build:
./gradlew build
start:
./gradlew run
startCompose:
docker-compose build && docker-compose up
buildAndStartCompose:
make clean build startCompose