Lukas Bachschwell
e8452e0d77
- Adding docker DB template, - migrationscript, - config update, . adding migration to bee rs
24 lines
573 B
JSON
24 lines
573 B
JSON
{
|
|
"version": 0,
|
|
"go_install": false,
|
|
"scripts": {
|
|
"test": "go test -v tests/*.go",
|
|
"convey": "goconvey tests/",
|
|
"migrate:system": "go run scripts/migrateTenants.go system",
|
|
"migrate:tenants": "go run scripts/migrateTenants.go"
|
|
},
|
|
"cmd_args": [],
|
|
"envs": [],
|
|
"dir_structure": {
|
|
"watch_all": true,
|
|
"controllers": "controllers",
|
|
"models": "models",
|
|
"others": ["services"]
|
|
},
|
|
"database": {
|
|
"driver": "postgres",
|
|
"conn": "postgres://postgres:postgre@127.0.0.1:5435/system?sslmode=disable"
|
|
},
|
|
"enable_reload": true
|
|
}
|