7 lines
160 B
Bash
Executable File
7 lines
160 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
test -e sample_data/data/food.db && rm sample_data/data/food.db
|
|
|
|
go run ./cmd init
|
|
sqlite3 sample_data/data/food.db < sample_data/seed.sql
|