From 11592bacfc80ad2bec26d49f88db4b678d2edd5e Mon Sep 17 00:00:00 2001 From: Jefri Reynaldi <148523047+JefriReynaldi@users.noreply.github.com> Date: Mon, 19 Feb 2024 22:49:11 +0700 Subject: [PATCH] Create devcontainer.json { "Modules": { "DemoModulePython": { "Name": "My module name", "Version": "2.0.0", "PublishingInfo" : { ... }, "LaunchSettings": { ... }, "EnvironmentVariables": { ... }, "GpuOptions" : { ... }, "InstallOptions" : { ... }, "UIElements" : { ... }, "RouteMaps": [ { ... }] } } } --- .devcontainer/devcontainer.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..ad93c14a --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,5 @@ +{ + "image": "mcr.microsoft.com/devcontainers/universal:2", + "features": { + } +}