diff --git a/.devcontainer.json b/.devcontainer.json deleted file mode 100644 index 6a46e60..0000000 --- a/.devcontainer.json +++ /dev/null @@ -1,68 +0,0 @@ -// Reference: -// - https://containers.dev/features -// - https://containers.dev/implementors/features -// - https://code.visualstudio.com/docs/getstarted/settings -{ - "name": "pulumi", - "image": "ghcr.io/pulumi/devcontainer", - "customizations": { - "vscode": { - "settings": [ - "go.testTags", "all", - "go.buildTags", "all", - "editor.minimap.enabled", false, - "explorer.openEditors.visible", 1, - "editor.quickSuggestionsDelay", 0, - "editor.suggestSelection", "first", - "editor.snippetSuggestions", "top", - "editor.gotoLocation.multipleReferences", "goto", - "editor.gotoLocation.multipleDefinitions", "goto", - "editor.gotoLocation.multipleDeclarations", "goto", - "editor.gotoLocation.multipleImplementations", "goto", - "editor.gotoLocation.multipleTypeDefinitions", "goto", - "editor.terminal.integrated.shell.linux", "/usr/bin/zsh", - "files.trimTrailingWhitespace", true, - "files.trimFinalNewlines", true - ], - "extensions": [ - "golang.go", - "vscodevim.vim", - "github.copilot", - "ms-python.python", - "jetpack-io.devbox", - "redhat.vscode-yaml", - "esbenp.prettier-vscode", - "ms-vscode.makefile-tools", - "ms-azuretools.vscode-docker", - "github.vscode-pull-request-github", - "ms-vscode-remote.remote-containers", - "visualstudioexptteam.vscodeintellicode", - "bierner.markdown-preview-github-styles" - ] - } - }, - "features": { - "ghcr.io/devcontainers/features/common-utils:2": { - "installZsh": true, - "configureZshAsDefaultShell": true, - "installOhMyZsh": true, - "installOhMyZshConfig": true, - "upgradePackages": true, - "nonFreePackages": true, - "username": "vscode", - "userUid": "automatic", - "userGid": "automatic" - }, - "ghcr.io/devcontainers/features/docker-outside-of-docker:1": { - "moby": false, - "installDockerBuildx": true, - "version": "latest", - "dockerDashComposeVersion": "v2" - } - }, - "postCreateCommand": "git submodule update --init --recursive", - "remoteUser": "vscode", - "forwardPorts": [1313], - "runArgs": ["--network=host"] -} - diff --git a/.devcontainer b/.github/devcontainer similarity index 100% rename from .devcontainer rename to .github/devcontainer diff --git a/.gitmodules b/.gitmodules index caa22b6..25a840b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ -[submodule ".devcontainer"] - path = .devcontainer +[submodule ".github/devcontainer"] + path = .github/devcontainer url = https://github.com/pulumi/devcontainer