added root stuff

trunk
Adam Veldhousen 2021-04-09 14:14:12 -05:00
parent e0543c47ae
commit 82c888fa38
Signed by: adam
GPG Key ID: 6DB29003C6DD1E4B
3 changed files with 26 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
# db
db/.data

0
README.md Normal file
View File

24
makefile Normal file
View File

@ -0,0 +1,24 @@
clean: clean-db
start: start-client start-api start-db
stop: stop-api stop-db
start-db:
cd db && $(MAKE) start
stop-db:
cd db && $(MAKE) stop
clean-db: stop-db
cd db && $(MAKE) clean
clean:
@rm -rf
.PHONY: clean clean-db start-db stop-db