From 803f89ae9ce6492a1c3f4732d31a0ad2e8354a85 Mon Sep 17 00:00:00 2001 From: "Adam M. Krajewski" <54290107+amkrajewski@users.noreply.github.com> Date: Fri, 26 Jan 2024 10:26:36 -0500 Subject: [PATCH] - add .devcontainer.json and start working on QuickStart --- .devcontainer.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .devcontainer.json diff --git a/.devcontainer.json b/.devcontainer.json new file mode 100644 index 0000000..a7bef28 --- /dev/null +++ b/.devcontainer.json @@ -0,0 +1,18 @@ +{ + "image": "mcr.microsoft.com/devcontainers/miniconda", + "customizations": { + "vscode": { + "extensions": [ + "nimsaem.nimvscode", + "ms-python.python", + "ms-toolsai.jupyter" + ] + } + }, + "hostRequirements": { + "cpus": 4, + "memory": "16gb", + "storage": "16gb" + }, + "onCreateCommand": "conda install -y python=3.10 jupyter numpy" +}