mirror of
https://github.com/InsanusMokrassar/BooruGrabberTelegramBot.git
synced 2024-11-04 23:33:48 +00:00
20 lines
212 B
Makefile
20 lines
212 B
Makefile
#!make
|
|
|
|
.ONESHELL:
|
|
.PHONY:
|
|
|
|
clean:
|
|
./gradlew clean
|
|
|
|
build:
|
|
./gradlew build
|
|
|
|
start:
|
|
./gradlew run
|
|
|
|
startCompose:
|
|
docker-compose build && docker-compose up
|
|
|
|
buildAndStartCompose:
|
|
make clean build startCompose
|