mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 03:20:27 +00:00
14 lines
260 B
Bash
Executable File
14 lines
260 B
Bash
Executable File
#!/bin/bash
|
|
|
|
bin() {
|
|
go run ana.go
|
|
}
|
|
|
|
migrate() {
|
|
export $(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
|