diff --git a/makefile b/makefile index 39bcf48..b5ac134 100644 --- a/makefile +++ b/makefile @@ -43,3 +43,11 @@ dronefile: -V target_arch=${TARGET_ARCH} drone sign frx/altherego --save .PHONY: dronefile + +init_db: + rm -rf .testdata + mkdir .testdata + sqlite3 -init ./db/001_initial.sql ./.testdata/db.sqlite '.q' + +open_db: + sqlite3 ./.testdata/db.sqlite