diff options
author | ILikePlayingGames <22475143+ILikePlayingGames@users.noreply.github.com> | 2023-09-17 18:50:11 +0000 |
---|---|---|
committer | ILikePlayingGames <22475143+ILikePlayingGames@users.noreply.github.com> | 2023-09-17 18:50:11 +0000 |
commit | 09526db630acc62755f47e5e257488cfaab1039a (patch) | |
tree | 9ccf55b54d14e571234d3b6e4fb76cdc8f43cb26 | |
parent | f4f337972c4fcc099883a8b37b530bca28e496ed (diff) | |
download | SkyBlockModWiki-09526db630acc62755f47e5e257488cfaab1039a.tar.gz SkyBlockModWiki-09526db630acc62755f47e5e257488cfaab1039a.tar.bz2 SkyBlockModWiki-09526db630acc62755f47e5e257488cfaab1039a.zip |
Add devcontainer.json
-rw-r--r-- | .devcontainer/devcontainer.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..9800966 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,22 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/devcontainers/templates/tree/main/src/python +{ + "name": "Python 3", + // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile + "image": "mcr.microsoft.com/devcontainers/python:1-3.11-bullseye", + + // 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": "pip3 install --user mkdocs-material" + + // Configure tool-specific properties. + // "customizations": {}, + + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" +} |