DBStop stops the databases of the development environment.
()
| 228 | |
| 229 | // DBStop stops the databases of the development environment. |
| 230 | func (Dev) DBStop() error { |
| 231 | if mg.Verbose() { |
| 232 | fmt.Println("Stopping dev databases") |
| 233 | } |
| 234 | return execDockerCompose(append([]string{"stop"}, devDatabases...)...) |
| 235 | } |
| 236 | |
| 237 | // DBErase erases the databases of the development environment. |
| 238 | func (Dev) DBErase() error { |
nothing calls this directly
no test coverage detected