Update Makefile

This commit is contained in:
Moritz Utcke
2024-11-04 17:16:07 +11:00
parent d9f9f1df34
commit 5d4a2cee96

View File

@@ -1,4 +1,5 @@
.PHONY: dev database api online-energieausweis all .PHONY: dev database api online-energieausweis all all/remote
online-energieausweis: online-energieausweis:
bun run dev bun run dev
@@ -12,6 +13,12 @@ api:
cd ../api cd ../api
bun run dev bun run dev
all: all/remote:
ENVIRONMENT=remote
mkdir -p logs
bun run dev 2>&1 | tee ~/logs/`date '+%d-%m-%Y_%H:%M:%S'`.log
all:
ENVIRONMENT=remote
mkdir -p logs mkdir -p logs
bun run dev 2>&1 | tee ~/logs/`date '+%d-%m-%Y_%H:%M:%S'`.log bun run dev 2>&1 | tee ~/logs/`date '+%d-%m-%Y_%H:%M:%S'`.log