18 lines
365 B
Makefile
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
|