├── .devcontainer.json ├── .github └── workflows │ ├── release.yaml │ └── test.yaml ├── LICENSE ├── README.md ├── renovate.json ├── src ├── dvc │ ├── README.md │ ├── devcontainer-feature.json │ └── install.sh └── nvtop │ ├── README.md │ ├── devcontainer-feature.json │ └── install.sh └── test ├── dvc └── test.sh └── nvtop └── test.sh /.devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iterative/features/HEAD/.devcontainer.json -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iterative/features/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iterative/features/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iterative/features/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iterative/features/HEAD/README.md -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iterative/features/HEAD/renovate.json -------------------------------------------------------------------------------- /src/dvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iterative/features/HEAD/src/dvc/README.md -------------------------------------------------------------------------------- /src/dvc/devcontainer-feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iterative/features/HEAD/src/dvc/devcontainer-feature.json -------------------------------------------------------------------------------- /src/dvc/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iterative/features/HEAD/src/dvc/install.sh -------------------------------------------------------------------------------- /src/nvtop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iterative/features/HEAD/src/nvtop/README.md -------------------------------------------------------------------------------- /src/nvtop/devcontainer-feature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iterative/features/HEAD/src/nvtop/devcontainer-feature.json -------------------------------------------------------------------------------- /src/nvtop/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iterative/features/HEAD/src/nvtop/install.sh -------------------------------------------------------------------------------- /test/dvc/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iterative/features/HEAD/test/dvc/test.sh -------------------------------------------------------------------------------- /test/nvtop/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iterative/features/HEAD/test/nvtop/test.sh --------------------------------------------------------------------------------