From f1d29c5ed132ea1948dcac22874b456e24636e1f Mon Sep 17 00:00:00 2001 From: janic Date: Tue, 18 Oct 2022 00:19:46 +0200 Subject: [PATCH] Start of makefile --- makefile | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 makefile diff --git a/makefile b/makefile new file mode 100644 index 0000000..577f9e6 --- /dev/null +++ b/makefile @@ -0,0 +1,37 @@ +# Make all +all: db api ui + +# Start everything +start: db-start api-start ui-start + +# Stop everything +stop: ui-stop api-stop db-stop + +# Setup Database +db: db-init db-start + +db-init: + +db-start: + +db-stop: + +# Setup API +api: api-start + +api-start: + +api-stop: + +# Setup UI +ui: ui-start + +ui-start: + +ui-stop: + +# Regenerate configs +config: config-regenerate + +config-regenerate: + python config/template.py \ No newline at end of file