multitenantStack/bee.json
Lukas Bachschwell e8452e0d77 Migration Automation
- Adding docker DB template,
- migrationscript,
- config update,
. adding migration to bee rs
2018-11-14 18:47:42 +01:00

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
}