inital commit

This commit is contained in:
2020-04-22 18:16:12 -04:00
commit f8cecdc00c
5 changed files with 87 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
WORKING_DIR := $(shell pwd)
test:
docker run -it --name mc-test -p 25565:25565 --rm -v $(WORKING_DIR)/spigot:/mc \
-w /mc openjdk java -Xms1G -Xmx4G -server -jar spigot.jar nogui
up:
systemctl start mc-server.service
down:
systemctl stop mc-server.service
include build/Makefile