- Configure .vscode/settings.json
{ "go.lintTool":"golangci-lint", "go.lintFlags": [ "--fast" ], "go.lintOnSave": "package", "go.formatTool": "goimports", "go.useLanguageServer": true, "[go]": { "editor.formatOnSave": true, "editor.codeActionsOnSave": { "source.organizeImports": true } }, "go.docsTool": "gogetdoc" }
- Create .env file
cp .env.example .env
- Init Submodules
git submodule update --init
- Enable githooks
git config core.hooksPath .githooks
-
docker-compose up