Files
mkspc-mgmt/Makefile
2023-05-29 18:26:18 +02:00

18 lines
365 B
Makefile

.PHONY: help
help:
@echo
@echo 'Available commands:'
@echo ' init: Create initial database and super user'
@echo
.PHONY: init
init:
./scripts/on-init.sh
.PHONY: get_columns
get_columns:
@for x in $$(sqlite3 data/db.sqlite3 '.tables base_%'); do \
echo; echo "=== $$x ==="; \
sqlite3 data/db.sqlite3 "PRAGMA table_info($$x)" | cut -d'|' -f1-2; \
done