17 lines
521 B
YAML
17 lines
521 B
YAML
|
# vim:filetype=yaml:
|
||
|
# you can copy this file to rockhopper_mysql_local.yaml to have your modification
|
||
|
---
|
||
|
driver: mysql
|
||
|
dialect: mysql
|
||
|
package: main
|
||
|
|
||
|
# unix socket connection to mysql with password
|
||
|
# dsn: "root:123123@unix(/opt/local/var/run/mysql57/mysqld.sock)/bbgo_dev?parseTime=true"
|
||
|
|
||
|
# tcp connection to mysql with password
|
||
|
dsn: "root:root@tcp(localhost:3306)/bbgo?parseTime=true"
|
||
|
|
||
|
# tcp connection to mysql without password
|
||
|
# dsn: "root@tcp(localhost:3306)/bbgo_dev?parseTime=true"
|
||
|
migrationsDir: migrations/mysql
|