mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 17:13:51 +00:00
16 lines
507 B
YAML
16 lines
507 B
YAML
# vim:filetype=yaml:
|
|
# you can copy this file to rockhopper_mysql_local.yaml to have your modification
|
|
---
|
|
driver: mysql
|
|
dialect: mysql
|
|
|
|
# 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
|