From a9f925cf1f46fbbfbec38b6f7ad852700613fc34 Mon Sep 17 00:00:00 2001 From: emisargent <55098699+emisargent@users.noreply.github.com> Date: Fri, 10 Feb 2023 17:45:41 +0000 Subject: [PATCH] Add devcontainer skeleton --- .devcontainer/devcontainer.json | 19 +++++++++++++++++++ .devcontainer/post-create-command.sh | 0 2 files changed, 19 insertions(+) create mode 100644 .devcontainer/devcontainer.json create mode 100644 .devcontainer/post-create-command.sh diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..b3353b06 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,19 @@ +// For format details, see https://aka.ms/devcontainer.json +{ + "name": "pallets/flask", + + // Features to add to the dev container. More info: https://containers.dev/features. + // "features": {}, + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // "forwardPorts": [], + + // Use 'postCreateCommand' to run commands after the container is created. + "postCreateCommand": ".devcontainer/post-create-command.sh" + + // Use 'postStartCommand' to run commands after the container is started. + // "postStartCommand": ". .venv/bin/activate", + + // Configure tool-specific properties. + // "customizations": {}, +} diff --git a/.devcontainer/post-create-command.sh b/.devcontainer/post-create-command.sh new file mode 100644 index 00000000..e69de29b