envd 0.3.45__tar.gz → 0.3.47__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of envd might be problematic. Click here for more details.
- envd-0.3.47/.GIT_TAG_INFO +1 -0
- {envd-0.3.45 → envd-0.3.47}/.all-contributorsrc +9 -0
- {envd-0.3.45 → envd-0.3.47}/.gitignore +3 -0
- {envd-0.3.45 → envd-0.3.47}/.golangci.yml +1 -1
- envd-0.3.47/.lycheeignore +7 -0
- {envd-0.3.45 → envd-0.3.47}/CHANGELOG.md +9 -0
- {envd-0.3.45 → envd-0.3.47}/Makefile +8 -7
- {envd-0.3.45 → envd-0.3.47}/PKG-INFO +3 -2
- {envd-0.3.45 → envd-0.3.47}/README.md +2 -1
- {envd-0.3.45 → envd-0.3.47}/base-images/remote-cache/build.envd +12 -0
- {envd-0.3.45 → envd-0.3.47}/envd/api/v0/config.py +1 -1
- {envd-0.3.45 → envd-0.3.47}/envd/api/v0/io.py +0 -1
- {envd-0.3.45 → envd-0.3.47}/envd/api/v0/runtime.py +1 -1
- {envd-0.3.45 → envd-0.3.47}/envd/api/v1/install.py +17 -15
- {envd-0.3.45 → envd-0.3.47}/envd/api/v1/runtime.py +1 -1
- {envd-0.3.45 → envd-0.3.47}/envd.egg-info/PKG-INFO +3 -2
- {envd-0.3.45 → envd-0.3.47}/envd.egg-info/SOURCES.txt +3 -1
- {envd-0.3.45 → envd-0.3.47}/go.mod +102 -96
- {envd-0.3.45 → envd-0.3.47}/go.sum +268 -249
- envd-0.3.47/lychee.toml +4 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/debug_llb.go +6 -29
- {envd-0.3.45 → envd-0.3.47}/pkg/app/image_prune.go +2 -2
- {envd-0.3.45 → envd-0.3.47}/pkg/app/image_prune_test.go +3 -3
- {envd-0.3.45 → envd-0.3.47}/pkg/app/prune.go +4 -2
- {envd-0.3.45 → envd-0.3.47}/pkg/app/up.go +15 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/autocomplete/zsh.go +1 -1
- {envd-0.3.45 → envd-0.3.47}/pkg/builder/build.go +1 -1
- {envd-0.3.45 → envd-0.3.47}/pkg/builder/util.go +4 -2
- {envd-0.3.45 → envd-0.3.47}/pkg/buildkitd/buildkitd.go +9 -5
- {envd-0.3.45 → envd-0.3.47}/pkg/buildkitd/mock/mock.go +4 -4
- {envd-0.3.45 → envd-0.3.47}/pkg/driver/client.go +3 -3
- {envd-0.3.45 → envd-0.3.47}/pkg/driver/docker/docker.go +31 -23
- {envd-0.3.45 → envd-0.3.47}/pkg/driver/nerdctl/nerdctl.go +5 -4
- {envd-0.3.45 → envd-0.3.47}/pkg/envd/docker.go +38 -35
- envd-0.3.47/pkg/envd/docker_test.go +164 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/envd/engine.go +2 -2
- {envd-0.3.45 → envd-0.3.47}/pkg/envd/envdserver.go +3 -3
- {envd-0.3.45 → envd-0.3.47}/pkg/envd/types.go +1 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/compile.go +2 -2
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/system.go +5 -3
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/compile.go +2 -2
- {envd-0.3.45 → envd-0.3.47}/pkg/progress/compileui/display.go +4 -4
- {envd-0.3.45 → envd-0.3.47}/pkg/syncthing/device.go +1 -1
- {envd-0.3.45 → envd-0.3.47}/pkg/types/envd.go +5 -3
- envd-0.3.47/pyproject.toml +12 -0
- {envd-0.3.45 → envd-0.3.47}/setup.py +5 -6
- envd-0.3.45/.GIT_TAG_INFO +0 -1
- envd-0.3.45/.markdown-lint.json +0 -7
- envd-0.3.45/pyproject.toml +0 -3
- {envd-0.3.45 → envd-0.3.47}/.editorconfig +0 -0
- {envd-0.3.45 → envd-0.3.47}/.goreleaser.yaml +0 -0
- {envd-0.3.45 → envd-0.3.47}/.pre-commit-config.yaml +0 -0
- {envd-0.3.45 → envd-0.3.47}/.vscode/launch.json +0 -0
- {envd-0.3.45 → envd-0.3.47}/CODEOWNERS +0 -0
- {envd-0.3.45 → envd-0.3.47}/CODE_OF_CONDUCT.md +0 -0
- {envd-0.3.45 → envd-0.3.47}/LICENSE +0 -0
- {envd-0.3.45 → envd-0.3.47}/MANIFEST.in +0 -0
- {envd-0.3.45 → envd-0.3.47}/OWNERS +0 -0
- {envd-0.3.45 → envd-0.3.47}/base-images/.dockerignore +0 -0
- {envd-0.3.45 → envd-0.3.47}/base-images/build.sh +0 -0
- {envd-0.3.45 → envd-0.3.47}/base-images/envd/build.sh +0 -0
- {envd-0.3.45 → envd-0.3.47}/base-images/envd/envd-daemonless.Dockerfile +0 -0
- {envd-0.3.45 → envd-0.3.47}/base-images/envd/envd.Dockerfile +0 -0
- {envd-0.3.45 → envd-0.3.47}/base-images/envd-sshd/envd-sshd.Dockerfile +0 -0
- {envd-0.3.45 → envd-0.3.47}/base-images/envd-starship/envd-starship.Dockerfile +0 -0
- {envd-0.3.45 → envd-0.3.47}/base-images/julia1.8rc1-ubuntu20.04.Dockerfile +0 -0
- {envd-0.3.45 → envd-0.3.47}/base-images/r4.2.Dockerfile +0 -0
- {envd-0.3.45 → envd-0.3.47}/base-images/remote-cache/build-and-push-remote-cache.sh +0 -0
- {envd-0.3.45 → envd-0.3.47}/cmd/envd/main.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/cmd/envd-sshd/main.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/envd/api/v0/__init__.py +0 -0
- {envd-0.3.45 → envd-0.3.47}/envd/api/v0/install.py +0 -0
- {envd-0.3.45 → envd-0.3.47}/envd/api/v1/__init__.py +0 -0
- {envd-0.3.45 → envd-0.3.47}/envd/api/v1/config.py +0 -0
- {envd-0.3.45 → envd-0.3.47}/envd/api/v1/io.py +0 -0
- {envd-0.3.45 → envd-0.3.47}/envd/api.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/envd.egg-info/dependency_links.txt +0 -0
- {envd-0.3.45 → envd-0.3.47}/envd.egg-info/not-zip-safe +0 -0
- {envd-0.3.45 → envd-0.3.47}/envd.egg-info/top_level.txt +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/app.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/bootstrap.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/build/build.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/build.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/completion.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/const.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/context.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/context_create.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/context_ls.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/context_rm.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/context_use.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/debug.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/destroy.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/env.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/env_describe.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/env_ls.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/exec.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/formatter/data.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/formatter/json/context.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/formatter/json/env.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/formatter/json/image.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/formatter/json/print.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/formatter/json/version.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/formatter/table/context.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/formatter/table/env.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/formatter/table/image.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/formatter/table/version.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/image.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/image_describe.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/image_remove.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/init.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/interactive.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/login.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/pause.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/reference.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/resume.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/run.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/telemetry/reporter.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/template/julia.envd +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/template/r.envd +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/top.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/app/version.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/autocomplete/bash.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/autocomplete/fish.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/builder/build_func.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/builder/builder.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/builder/builder_suite_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/builder/builder_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/builder/dep_check.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/builder/err.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/builder/types.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/builder/util_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/buildkitd/print.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/config/config.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/data/datasource.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/data/envd.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/driver/docker/docker_suite_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/driver/docker/docker_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/driver/docker/label.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/driver/nerdctl/buildkit.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/driver/stats_type.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/editor/vscode/types.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/editor/vscode/util.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/editor/vscode/vscode.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/editor/vscode/vscode_suite_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/editor/vscode/vscode_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/envd/factory.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/flag/consts.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/home/auth.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/home/auth_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/home/cache.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/home/config.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/home/context.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/home/context_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/home/data.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/home/home_suite_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/home/manager.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/home/manager_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/interpreter.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/mock/mock.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/builtin/builtin.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/config/config.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/config/const.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/data/const.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/data/rule.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/data/util.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/install/const.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/install/install.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/interpreter.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/interpreter_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/io/const.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/io/io.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/runtime/const.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/runtime/runtime.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/starlark_suite_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/testdata/test.envd +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/universe/const.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v0/universe/universe.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/builtin/builtin.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/config/config.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/config/const.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/data/const.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/data/rule.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/data/util.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/install/const.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/install/install.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/interpreter.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/interpreter_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/io/const.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/io/io.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/runtime/const.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/runtime/runtime.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/starlark_suite_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/testdata/test.envd +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/universe/const.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/frontend/starlark/v1/universe/universe.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/graph.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/types.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/util.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/cache.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/checker.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/conda.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/consts.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/custom.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/editor.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/editor_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/fs.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/git.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/install-conda.sh +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/install-mamba.sh +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/interface.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/julia.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/python.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/r.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/shell.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/supervisor.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/types.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/user.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/util.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v0/util_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/cache.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/checker.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/conda.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/consts.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/editor.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/editor_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/fs.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/get_conda.sh +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/git.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/install_conda.sh +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/interface.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/julia.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/julia.sh +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/python.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/r.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/shell.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/supervisor.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/system.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/types.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/user.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/util.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/ir/v1/util_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/lang/version/version.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/metrics/collector.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/metrics/docker_collector.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/metrics/helper.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/metrics/model.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/metrics/widget.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/progress/compileui/mock/mock.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/progress/compileui/term.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/progress/compileui/term_windows.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/progress/compileui/trace.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/progress/compileui/types.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/progress/mode/mode.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/progress/progressui/display.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/progress/progressui/display_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/progress/progressui/printer.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/progress/progressui/term.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/progress/progressui/term_windows.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/progress/progresswriter/printer.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/progress/progresswriter/writer.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/remote/sshd/os.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/remote/sshd/sshd.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/shell/install.sh +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/shell/zsh.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/shell/zsh_suite_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/shell/zsh_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/shell/zshrc +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/ssh/config/entry.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/ssh/config/key.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/ssh/config/ssh_config.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/ssh/config/ssh_config_suite_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/ssh/config/ssh_config_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/ssh/copy.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/ssh/ssh.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/syncthing/client.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/syncthing/config.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/syncthing/event.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/syncthing/file.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/syncthing/folder.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/syncthing/install.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/syncthing/syncthing.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/syncthing/syncthing_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/syncthing/util.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/types/container.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/types/label.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/types/types_suite_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/util/buildkitutil/buildkit.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/util/buildkitutil/buildkit_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/util/envutil/env.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/util/envutil/env_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/util/fileutil/file.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/util/fileutil/file_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/util/fileutil/namegenerator.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/util/netutil/netutil.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/util/netutil/netutil_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/util/osutil/wsl.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/util/runtimeutil/runtimeutil.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/util/starlarkutil/stringslice.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/util/starlarkutil/stringslice_test.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/util/ziputil/unzip.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/pkg/version/version.go +0 -0
- {envd-0.3.45 → envd-0.3.47}/scripts/envd-daemonless.sh +0 -0
- {envd-0.3.45 → envd-0.3.47}/setup.cfg +0 -0
- {envd-0.3.45 → envd-0.3.47}/typos.toml +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
v0.3.47
|
|
@@ -628,6 +628,15 @@
|
|
|
628
628
|
"contributions": [
|
|
629
629
|
"code"
|
|
630
630
|
]
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"login": "arugal",
|
|
634
|
+
"name": "zhang-wei",
|
|
635
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/26432832?v=4",
|
|
636
|
+
"profile": "http://blogs.zhangwei.asia",
|
|
637
|
+
"contributions": [
|
|
638
|
+
"code"
|
|
639
|
+
]
|
|
631
640
|
}
|
|
632
641
|
],
|
|
633
642
|
"contributorsPerLine": 7,
|
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.3.45 (2024-01-24)
|
|
4
|
+
|
|
5
|
+
* [639c188](https://github.com/tensorchord/envd/commit/639c188536181c1d621bd45d04b2243fef72c467) fix: go-git security issue GHSA-mw99-9chc-xw7r (#1844)
|
|
6
|
+
* [457f5fd](https://github.com/tensorchord/envd/commit/457f5fd9a0509f5ef64ce7ea9ce5a2cea601b85e) fix: allow cli --gpus to override config gpu (#1843)
|
|
7
|
+
|
|
8
|
+
### Contributors
|
|
9
|
+
|
|
10
|
+
* Keming
|
|
11
|
+
|
|
3
12
|
## v0.3.44 (2024-01-16)
|
|
4
13
|
|
|
5
14
|
* [1f927d7](https://github.com/tensorchord/envd/commit/1f927d7813a687123e637d59c65417b8780088cf) fix: fix comment in /pkg/home/auth.go. (#1831)
|
|
@@ -176,7 +176,7 @@ test-local:
|
|
|
176
176
|
@go test -v -race -coverprofile=coverage.out ./...
|
|
177
177
|
|
|
178
178
|
test: generate ## Run the tests
|
|
179
|
-
@go test -race -coverpkg=./pkg/... -coverprofile=coverage.out
|
|
179
|
+
@go test -race -coverpkg=./pkg/... -coverprofile=coverage.out ./pkg/...
|
|
180
180
|
@go tool cover -func coverage.out | tail -n 1 | awk '{ print "Total coverage: " $$3 }'
|
|
181
181
|
|
|
182
182
|
e2e-test:
|
|
@@ -254,11 +254,12 @@ fmt: ## Run go fmt against code.
|
|
|
254
254
|
vet: ## Run go vet against code.
|
|
255
255
|
go vet ./...
|
|
256
256
|
|
|
257
|
-
|
|
258
|
-
@pip install -q
|
|
257
|
+
ruff-install:
|
|
258
|
+
@pip install -q ruff
|
|
259
259
|
|
|
260
|
-
envd-lint:
|
|
261
|
-
|
|
260
|
+
envd-lint: ruff-install
|
|
261
|
+
@ruff check .
|
|
262
262
|
|
|
263
|
-
envd-fmt:
|
|
264
|
-
|
|
263
|
+
envd-fmt: ruff-install
|
|
264
|
+
@ruff format .
|
|
265
|
+
@ruff check --fix .
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: envd
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.47
|
|
4
4
|
Summary: A development environment management tool for data scientists.
|
|
5
5
|
Home-page: https://github.com/tensorchord/envd
|
|
6
6
|
Author: TensorChord
|
|
@@ -396,9 +396,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
396
396
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/xieydd"><img src="https://avatars.githubusercontent.com/u/20329697?v=4?s=70" width="70px;" alt="xieydd"/><br /><sub><b>xieydd</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=xieydd" title="Code">💻</a></td>
|
|
397
397
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/xing0821"><img src="https://avatars.githubusercontent.com/u/54933318?v=4?s=70" width="70px;" alt="xing0821"/><br /><sub><b>xing0821</b></sub></a><br /><a href="#ideas-xing0821" title="Ideas, Planning, & Feedback">🤔</a> <a href="#userTesting-xing0821" title="User Testing">📓</a> <a href="https://github.com/tensorchord/envd/commits?author=xing0821" title="Code">💻</a></td>
|
|
398
398
|
<td align="center" valign="top" width="14.28%"><a href="https://xxchan.github.io"><img src="https://avatars.githubusercontent.com/u/37948597?v=4?s=70" width="70px;" alt="xxchan"/><br /><sub><b>xxchan</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=xxchan" title="Documentation">📖</a></td>
|
|
399
|
-
<td align="center" valign="top" width="14.28%"><a href="
|
|
399
|
+
<td align="center" valign="top" width="14.28%"><a href="http://blogs.zhangwei.asia"><img src="https://avatars.githubusercontent.com/u/26432832?v=4?s=70" width="70px;" alt="zhang-wei"/><br /><sub><b>zhang-wei</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=arugal" title="Code">💻</a></td>
|
|
400
400
|
</tr>
|
|
401
401
|
<tr>
|
|
402
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zhyon404"><img src="https://avatars.githubusercontent.com/u/32242529?v=4?s=70" width="70px;" alt="zhyon404"/><br /><sub><b>zhyon404</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=zhyon404" title="Code">💻</a></td>
|
|
402
403
|
<td align="center" valign="top" width="14.28%"><a href="https://www.homeboyc.cn/"><img src="https://avatars.githubusercontent.com/u/22193008?v=4?s=70" width="70px;" alt="杨成锴"/><br /><sub><b>杨成锴</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=asjdf" title="Code">💻</a></td>
|
|
403
404
|
</tr>
|
|
404
405
|
</tbody>
|
|
@@ -373,9 +373,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
373
373
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/xieydd"><img src="https://avatars.githubusercontent.com/u/20329697?v=4?s=70" width="70px;" alt="xieydd"/><br /><sub><b>xieydd</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=xieydd" title="Code">💻</a></td>
|
|
374
374
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/xing0821"><img src="https://avatars.githubusercontent.com/u/54933318?v=4?s=70" width="70px;" alt="xing0821"/><br /><sub><b>xing0821</b></sub></a><br /><a href="#ideas-xing0821" title="Ideas, Planning, & Feedback">🤔</a> <a href="#userTesting-xing0821" title="User Testing">📓</a> <a href="https://github.com/tensorchord/envd/commits?author=xing0821" title="Code">💻</a></td>
|
|
375
375
|
<td align="center" valign="top" width="14.28%"><a href="https://xxchan.github.io"><img src="https://avatars.githubusercontent.com/u/37948597?v=4?s=70" width="70px;" alt="xxchan"/><br /><sub><b>xxchan</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=xxchan" title="Documentation">📖</a></td>
|
|
376
|
-
<td align="center" valign="top" width="14.28%"><a href="
|
|
376
|
+
<td align="center" valign="top" width="14.28%"><a href="http://blogs.zhangwei.asia"><img src="https://avatars.githubusercontent.com/u/26432832?v=4?s=70" width="70px;" alt="zhang-wei"/><br /><sub><b>zhang-wei</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=arugal" title="Code">💻</a></td>
|
|
377
377
|
</tr>
|
|
378
378
|
<tr>
|
|
379
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zhyon404"><img src="https://avatars.githubusercontent.com/u/32242529?v=4?s=70" width="70px;" alt="zhyon404"/><br /><sub><b>zhyon404</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=zhyon404" title="Code">💻</a></td>
|
|
379
380
|
<td align="center" valign="top" width="14.28%"><a href="https://www.homeboyc.cn/"><img src="https://avatars.githubusercontent.com/u/22193008?v=4?s=70" width="70px;" alt="杨成锴"/><br /><sub><b>杨成锴</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=asjdf" title="Code">💻</a></td>
|
|
380
381
|
</tr>
|
|
381
382
|
</tbody>
|
|
@@ -18,3 +18,15 @@ def build_gpu_11_6():
|
|
|
18
18
|
"""pytorch"""
|
|
19
19
|
base(os="ubuntu20.04", language="python3")
|
|
20
20
|
install.cuda(version="11.6.2", cudnn="8")
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
def build_gpu_11_8():
|
|
24
|
+
"""pytorch"""
|
|
25
|
+
base(os="ubuntu20.04", language="python3")
|
|
26
|
+
install.cuda(version="11.8.0", cudnn="8")
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
def build_gpu_12_3():
|
|
30
|
+
"""pytorch"""
|
|
31
|
+
base(os="ubuntu20.04", language="python3")
|
|
32
|
+
install.cuda(version="12.3.2", cudnn="9")
|
|
@@ -27,7 +27,7 @@ v1 is experimental and may change in the future. Make sure to freeze the envd ve
|
|
|
27
27
|
:::
|
|
28
28
|
"""
|
|
29
29
|
|
|
30
|
-
from typing import
|
|
30
|
+
from typing import Optional, Sequence
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
def python(version: str = "3.9"):
|
|
@@ -57,59 +57,61 @@ def julia():
|
|
|
57
57
|
"""Install Julia."""
|
|
58
58
|
|
|
59
59
|
|
|
60
|
-
def apt_packages(name:
|
|
60
|
+
def apt_packages(name: Sequence[str] = ()):
|
|
61
61
|
"""Install package using the system package manager (apt on Ubuntu).
|
|
62
62
|
|
|
63
63
|
Args:
|
|
64
|
-
name (
|
|
64
|
+
name (Sequence[str]): apt package name list
|
|
65
65
|
"""
|
|
66
66
|
|
|
67
67
|
|
|
68
68
|
def python_packages(
|
|
69
|
-
name:
|
|
69
|
+
name: Sequence[str] = (), requirements: str = "", local_wheels: Sequence[str] = ()
|
|
70
70
|
):
|
|
71
71
|
"""Install python package by pip.
|
|
72
72
|
|
|
73
73
|
Args:
|
|
74
|
-
name (
|
|
74
|
+
name (Sequence[str]): package name list
|
|
75
75
|
requirements (str): requirements file path
|
|
76
|
-
local_wheels (
|
|
76
|
+
local_wheels (Sequence[str]): local wheels
|
|
77
77
|
(wheel files should be placed under the current directory)
|
|
78
78
|
"""
|
|
79
79
|
|
|
80
80
|
|
|
81
|
-
def conda_packages(
|
|
81
|
+
def conda_packages(
|
|
82
|
+
name: Sequence[str] = (), channel: Sequence[str] = (), env_file: str = ""
|
|
83
|
+
):
|
|
82
84
|
"""Install python package by Conda
|
|
83
85
|
|
|
84
86
|
Args:
|
|
85
|
-
name (
|
|
87
|
+
name (Sequence[str]): List of package names with optional version assignment,
|
|
86
88
|
such as ['pytorch', 'tensorflow==1.13.0']
|
|
87
|
-
channel (
|
|
89
|
+
channel (Sequence[str]): additional channels
|
|
88
90
|
env_file (str): conda env file path
|
|
89
91
|
"""
|
|
90
92
|
|
|
91
93
|
|
|
92
|
-
def r_packages(name:
|
|
94
|
+
def r_packages(name: Sequence[str]):
|
|
93
95
|
"""Install R packages by R package manager.
|
|
94
96
|
|
|
95
97
|
Args:
|
|
96
|
-
name (
|
|
98
|
+
name (Sequence[str]): package name list
|
|
97
99
|
"""
|
|
98
100
|
|
|
99
101
|
|
|
100
|
-
def julia_packages(name:
|
|
102
|
+
def julia_packages(name: Sequence[str]):
|
|
101
103
|
"""Install Julia packages.
|
|
102
104
|
|
|
103
105
|
Args:
|
|
104
|
-
name (
|
|
106
|
+
name (Sequence[str]): List of Julia packages
|
|
105
107
|
"""
|
|
106
108
|
|
|
107
109
|
|
|
108
|
-
def vscode_extensions(name:
|
|
110
|
+
def vscode_extensions(name: Sequence[str]):
|
|
109
111
|
"""Install VS Code extensions
|
|
110
112
|
|
|
111
113
|
Args:
|
|
112
|
-
name (
|
|
114
|
+
name (Sequence[str]): extension names, such as ['ms-python.python']
|
|
113
115
|
"""
|
|
114
116
|
|
|
115
117
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: envd
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.47
|
|
4
4
|
Summary: A development environment management tool for data scientists.
|
|
5
5
|
Home-page: https://github.com/tensorchord/envd
|
|
6
6
|
Author: TensorChord
|
|
@@ -396,9 +396,10 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
|
|
396
396
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/xieydd"><img src="https://avatars.githubusercontent.com/u/20329697?v=4?s=70" width="70px;" alt="xieydd"/><br /><sub><b>xieydd</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=xieydd" title="Code">💻</a></td>
|
|
397
397
|
<td align="center" valign="top" width="14.28%"><a href="https://github.com/xing0821"><img src="https://avatars.githubusercontent.com/u/54933318?v=4?s=70" width="70px;" alt="xing0821"/><br /><sub><b>xing0821</b></sub></a><br /><a href="#ideas-xing0821" title="Ideas, Planning, & Feedback">🤔</a> <a href="#userTesting-xing0821" title="User Testing">📓</a> <a href="https://github.com/tensorchord/envd/commits?author=xing0821" title="Code">💻</a></td>
|
|
398
398
|
<td align="center" valign="top" width="14.28%"><a href="https://xxchan.github.io"><img src="https://avatars.githubusercontent.com/u/37948597?v=4?s=70" width="70px;" alt="xxchan"/><br /><sub><b>xxchan</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=xxchan" title="Documentation">📖</a></td>
|
|
399
|
-
<td align="center" valign="top" width="14.28%"><a href="
|
|
399
|
+
<td align="center" valign="top" width="14.28%"><a href="http://blogs.zhangwei.asia"><img src="https://avatars.githubusercontent.com/u/26432832?v=4?s=70" width="70px;" alt="zhang-wei"/><br /><sub><b>zhang-wei</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=arugal" title="Code">💻</a></td>
|
|
400
400
|
</tr>
|
|
401
401
|
<tr>
|
|
402
|
+
<td align="center" valign="top" width="14.28%"><a href="https://github.com/zhyon404"><img src="https://avatars.githubusercontent.com/u/32242529?v=4?s=70" width="70px;" alt="zhyon404"/><br /><sub><b>zhyon404</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=zhyon404" title="Code">💻</a></td>
|
|
402
403
|
<td align="center" valign="top" width="14.28%"><a href="https://www.homeboyc.cn/"><img src="https://avatars.githubusercontent.com/u/22193008?v=4?s=70" width="70px;" alt="杨成锴"/><br /><sub><b>杨成锴</b></sub></a><br /><a href="https://github.com/tensorchord/envd/commits?author=asjdf" title="Code">💻</a></td>
|
|
403
404
|
</tr>
|
|
404
405
|
</tbody>
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
.gitignore
|
|
5
5
|
.golangci.yml
|
|
6
6
|
.goreleaser.yaml
|
|
7
|
-
.
|
|
7
|
+
.lycheeignore
|
|
8
8
|
.pre-commit-config.yaml
|
|
9
9
|
CHANGELOG.md
|
|
10
10
|
CODEOWNERS
|
|
@@ -16,6 +16,7 @@ OWNERS
|
|
|
16
16
|
README.md
|
|
17
17
|
go.mod
|
|
18
18
|
go.sum
|
|
19
|
+
lychee.toml
|
|
19
20
|
pyproject.toml
|
|
20
21
|
setup.py
|
|
21
22
|
typos.toml
|
|
@@ -129,6 +130,7 @@ pkg/editor/vscode/vscode.go
|
|
|
129
130
|
pkg/editor/vscode/vscode_suite_test.go
|
|
130
131
|
pkg/editor/vscode/vscode_test.go
|
|
131
132
|
pkg/envd/docker.go
|
|
133
|
+
pkg/envd/docker_test.go
|
|
132
134
|
pkg/envd/engine.go
|
|
133
135
|
pkg/envd/envdserver.go
|
|
134
136
|
pkg/envd/factory.go
|