emdb/Makefile

21 lines
435 B
Makefile
Raw Permalink Normal View History

2024-03-09 13:41:57 +01:00
.PHONY: tui, md-exprt, worker
2023-12-21 15:01:06 +01:00
2023-12-29 11:05:20 +01:00
# Define source and destination directories
MD_SRC_DIR := public
MD_DST_DIR := ../ewintr.nl/content/movies
2024-03-09 13:41:57 +01:00
tui:
go run ./terminal-client/main.go
2023-12-27 08:25:09 +01:00
2024-03-09 13:41:57 +01:00
md-export:
go run ./markdown-export/main.go
2023-12-27 08:25:09 +01:00
2024-03-09 13:41:57 +01:00
worker:
2024-03-09 14:59:18 +01:00
go run ./worker-client/main.go
2023-12-25 11:13:11 +01:00
2024-03-19 19:35:16 +01:00
deploy-worker:
go build -o emdb-worker ./worker-client/main.go
sudo systemctl stop emdb.service
sudo cp emdb-worker /usr/local/bin
sudo systemctl start emdb.service