2024-05-20 16:26:18 +00:00
|
|
|
createdb:
|
2024-04-23 16:52:48 +00:00
|
|
|
mysql --user=root --password=$(shell pass show sevenkeys/mysql) <sql/createdb.sql
|
2024-05-19 19:29:50 +00:00
|
|
|
importsets: createdb
|
|
|
|
go run cmd/importsets/main.go
|
|
|
|
importcards: importsets
|
2024-04-28 14:13:47 +00:00
|
|
|
go run cmd/importcards/main.go
|
2024-05-20 16:26:18 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
mysql --user=root --password=$(shell pass show sevenkeys/mysql) <sql/removedb.sql
|
|
|
|
rm -rf cache/
|