├── .devfile.yaml ├── .github └── CODEOWNERS ├── LICENSE ├── README.md ├── commands ├── additionals │ ├── increase-resource-range.sh │ └── patch-dw-subcription.sh ├── change-default-ide.sh ├── change-dev-container.sh ├── configure-gh-oauth.sh ├── configure-image-puller.sh ├── deploy.sh ├── disable-idling.sh ├── download-cli.sh ├── enable-image-puller.sh ├── login.sh ├── unused │ ├── 1-create-unprivileged-user.sh │ ├── 3-2-configure-az-oauth.sh │ └── patch-plugin-registry.sh └── use-open-vsx.org.sh └── images ├── copy-api-url-and-token.png ├── dashboard.png ├── deploy-successful.png ├── devfile-tasks.png ├── open-login-command.png ├── run-task-menu.png ├── startup.png └── vscode.png /.devfile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/.devfile.yaml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Global Owners 2 | * @nickboldt @l0rd @dkwon17 @ibuziuk 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/README.md -------------------------------------------------------------------------------- /commands/additionals/increase-resource-range.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/commands/additionals/increase-resource-range.sh -------------------------------------------------------------------------------- /commands/additionals/patch-dw-subcription.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/commands/additionals/patch-dw-subcription.sh -------------------------------------------------------------------------------- /commands/change-default-ide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/commands/change-default-ide.sh -------------------------------------------------------------------------------- /commands/change-dev-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/commands/change-dev-container.sh -------------------------------------------------------------------------------- /commands/configure-gh-oauth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/commands/configure-gh-oauth.sh -------------------------------------------------------------------------------- /commands/configure-image-puller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/commands/configure-image-puller.sh -------------------------------------------------------------------------------- /commands/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/commands/deploy.sh -------------------------------------------------------------------------------- /commands/disable-idling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/commands/disable-idling.sh -------------------------------------------------------------------------------- /commands/download-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/commands/download-cli.sh -------------------------------------------------------------------------------- /commands/enable-image-puller.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/commands/enable-image-puller.sh -------------------------------------------------------------------------------- /commands/login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/commands/login.sh -------------------------------------------------------------------------------- /commands/unused/1-create-unprivileged-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/commands/unused/1-create-unprivileged-user.sh -------------------------------------------------------------------------------- /commands/unused/3-2-configure-az-oauth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/commands/unused/3-2-configure-az-oauth.sh -------------------------------------------------------------------------------- /commands/unused/patch-plugin-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/commands/unused/patch-plugin-registry.sh -------------------------------------------------------------------------------- /commands/use-open-vsx.org.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/commands/use-open-vsx.org.sh -------------------------------------------------------------------------------- /images/copy-api-url-and-token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/images/copy-api-url-and-token.png -------------------------------------------------------------------------------- /images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/images/dashboard.png -------------------------------------------------------------------------------- /images/deploy-successful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/images/deploy-successful.png -------------------------------------------------------------------------------- /images/devfile-tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/images/devfile-tasks.png -------------------------------------------------------------------------------- /images/open-login-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/images/open-login-command.png -------------------------------------------------------------------------------- /images/run-task-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/images/run-task-menu.png -------------------------------------------------------------------------------- /images/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/images/startup.png -------------------------------------------------------------------------------- /images/vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/devspaces-demo/HEAD/images/vscode.png --------------------------------------------------------------------------------