diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 3c5c4b1..ead3123 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -59,6 +59,7 @@ "forwardPorts": [8080], "remoteEnv": { - "CONFIG_PATH": "${containerWorkspaceFolder}/config/dev.yaml" + "CONFIG_PATH": "${containerWorkspaceFolder}/config/dev.yaml", + "GOPRIVATE": "gitea.djmil.dev" } } diff --git a/Makefile b/Makefile index 1c29a28..3832860 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,7 @@ help: ## Show this help message # ── First-time setup ─────────────────────────────────────────────────────────── init: ## First-time project init: fetch deps, configure git hooks + go env -w GOPRIVATE=gitea.djmil.dev go mod tidy $(MAKE) setup @echo "Done! Run 'make build' to verify."