mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 03:20:27 +00:00
14 lines
284 B
Plaintext
14 lines
284 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
bin() {
|
||
|
go install
|
||
|
sudo service ana restart
|
||
|
}
|
||
|
|
||
|
migration() {
|
||
|
env $(cat .env | xargs) | $GOPATH/bin/migrate -url mysql://$ANA_DATABASE_USER:$ANA_DATABASE_PASSWORD@$ANA_DATABSE_HOST/$ANA_DATABASE_NAME -path ./db/migrations create $1
|
||
|
}
|
||
|
|
||
|
# call first argument
|
||
|
$1 $2 $3 $4
|