From a52cf2ae26924e1b2bb5553fdaf844184cba21e7 Mon Sep 17 00:00:00 2001 From: illia Liudohovskyi <101904816+Illia-the-coder@users.noreply.github.com> Date: Sat, 23 Sep 2023 15:21:31 +0200 Subject: [PATCH] Delete .devcontainer directory --- .devcontainer /devcontainer.json | 46 -------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 .devcontainer /devcontainer.json diff --git a/.devcontainer /devcontainer.json b/.devcontainer /devcontainer.json deleted file mode 100644 index 1b7f37a..0000000 --- a/.devcontainer /devcontainer.json +++ /dev/null @@ -1,46 +0,0 @@ -// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: -// https://github.com/microsoft/vscode-dev-containers/tree/v0.209.6/containers/python-3 -{ - "image": "mcr.microsoft.com/devcontainers/python:3.11-bullseye", - "customizations": { - "codespaces": { - "openFiles": [ - "README.md", - "streamlit_app.py" - ] - }, - "vscode": { - "settings": {}, - "extensions": [ - "ms-python.python", - "ms-python.vscode-pylance" - ] - } - }, - // Use 'forwardPorts' to make a list of ports inside the container available locally. - "forwardPorts": [ - 8501 - ], - // Use 'postCreateCommand' to run commands after the container is created. - // Install app dependencies. - "postCreateCommand": "pip3 install --user -r requirements.txt", - // Use 'postAttachCommand' to run commands after a tool has attached to the container. - // Start the app. - "postAttachCommand": { - "server": "streamlit run streamlit_app.py --server.enableCORS false --server.enableXsrfProtection false" - }, - "portsAttributes": { - "8501": { - "label": "Application", - "onAutoForward": "openPreview" - } - }, - // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. - "remoteUser": "vscode", - "features": { - // Optional features for development - increase container boot time! - // "ghcr.io/devcontainers-contrib/features/coverage-py:2": {}, - // "git": "latest", - // "github-cli": "latest" - } -}