11 lines
288 B
Makefile
11 lines
288 B
Makefile
createdb:
|
|
mysql --user=root --password=$(shell pass show sevenkeys/mysql) <sql/createdb.sql
|
|
import: createdb
|
|
go run cmd/importer/main.go
|
|
storagemgr:
|
|
go run cmd/storagemgr/main.go
|
|
|
|
clean:
|
|
mysql --user=root --password=$(shell pass show sevenkeys/mysql) <sql/removedb.sql
|
|
rm -rf cache/
|