CoolFace
Apppublic

gvatsal60/github-test

sourceHugging Faceapache-2.0updated 18h agoView on Hugging Face
0likes
devcontainer.json75 linesDownload Raw Back to .devcontainer
1{2  "capAdd": [3    "SYS_PTRACE"4  ],5  "containerEnv": {6    "ANONYMIZED_TELEMETRY": "false",7    "DEBIAN_FRONTEND": "noninteractive",8    "PIP_NO_CACHE_DIR": "1",9    "PYTHONDONTWRITEBYTECODE": "1",10    "STREAMLIT_BROWSER_GATHERUSAGESTATS": "false",11    "UV_LINK_MODE": "copy"12  },13  "customizations": {14    "vscode": {15      "extensions": [16        "DavidAnson.vscode-markdownlint",17        "GitHub.copilot",18        "GitHub.copilot-chat",19        "Tyriar.sort-lines",20        "bradzacher.vscode-copy-filename",21        "charliermarsh.ruff",22        "docker.docker",23        "ms-azuretools.vscode-containers",24        "ms-python.isort",25        "ms-python.pylint",26        "ms-python.python",27        "ms-python.vscode-pylance",28        "streetsidesoftware.code-spell-checker",29        "usernamehw.errorlens"30      ],31      "settings": {32        "editor.bracketPairColorization.enabled": true,33        "editor.comments.insertSpace": true,34        "editor.detectIndentation": false,35        "editor.insertSpaces": true,36        "editor.snippetSuggestions": "top",37        "editor.tabCompletion": "on",38        "editor.tabSize": 2,39        "editor.trimAutoWhitespace": true,40        "explorer.confirmDelete": false,41        "extensions.ignoreRecommendations": true,42        "files.associations": {43          ".env*": "dotenv"44        },45        "files.autoSave": "afterDelay",46        "files.eol": "auto",47        "files.exclude": {48          "**/.vscode": true49        },50        "github.copilot.enable": {51          "dotenv": false52        },53        "remote.downloadExtensionsLocally": false,54        "search.exclude": {55          "**/*.code-search": true,56          "**/*.git": true,57          "**/*.vscode-server": true,58          "**/bower_components": true,59          "**/node_modules": true60        },61        "workbench.startupEditor": "none"62      }63    }64  },65  "image": "mcr.microsoft.com/devcontainers/python:3.12",66  "mounts": [67    "source=${localWorkspaceFolder}/snippets,target=${containerWorkspaceFolder}/.vscode,type=bind,consistency=cached"68  ],69  "postCreateCommand": "chmod +x ${containerWorkspaceFolder}/.devcontainer/postCreateScript.sh && ${containerWorkspaceFolder}/.devcontainer/postCreateScript.sh",70  "runArgs": [71    "--rm",72    "--name=vsc-${localEnv:USER}-${containerWorkspaceFolderBasename}-${devcontainerId}"73  ]74}75