mirror of
https://github.com/status-im/fathom.git
synced 2025-02-28 19:10:36 +00:00
13 lines
258 B
Bash
Executable File
13 lines
258 B
Bash
Executable File
#!/bin/bash
|
|
|
|
bin() {
|
|
go run ana.go
|
|
}
|
|
|
|
migrate() {
|
|
env $(cat .env | xargs) | $GOPATH/bin/migrate -url mysql://$ANA_DATABASE_USER:$ANA_DATABASE_PASSWORD@$ANA_DATABSE_HOST/$ANA_DATABASE_NAME -path ./db/migrations $1 $2 $3
|
|
}
|
|
|
|
# call first argument
|
|
$1 $2 $3 $4
|