blakeblackshear.frigate/.devcontainer/devcontainer.json

79 lines
2.2 KiB
JSON
Raw Normal View History

2021-02-17 14:16:39 +01:00
{
"name": "Frigate Devcontainer",
2021-02-17 14:16:39 +01:00
"dockerComposeFile": "../docker-compose.yml",
"service": "devcontainer",
"workspaceFolder": "/workspace/frigate",
"initializeCommand": ".devcontainer/initialize.sh",
"postCreateCommand": ".devcontainer/post_create.sh",
"overrideCommand": false,
"remoteUser": "vscode",
"features": {
"ghcr.io/devcontainers/features/common-utils:1": {}
},
"forwardPorts": [5000, 5001, 5173, 1935, 8554, 8555],
"portsAttributes": {
"5000": {
"label": "NGINX",
"onAutoForward": "silent"
},
"5001": {
"label": "Frigate API",
"onAutoForward": "silent"
},
"5173": {
"label": "Vite Server",
"onAutoForward": "silent"
},
"1935": {
"label": "RTMP",
"onAutoForward": "silent"
},
"8554": {
"label": "gortc RTSP",
"onAutoForward": "silent"
},
"8555": {
"label": "go2rtc WebRTC",
"onAutoForward": "silent"
}
},
2021-02-17 14:16:39 +01:00
"extensions": [
"ms-python.vscode-pylance",
2021-02-17 14:16:39 +01:00
"ms-python.python",
"visualstudioexptteam.vscodeintellicode",
"mhutchie.git-graph",
"ms-azuretools.vscode-docker",
"streetsidesoftware.code-spell-checker",
"esbenp.prettier-vscode",
2022-02-26 20:11:00 +01:00
"dbaeumer.vscode-eslint",
"mikestead.dotenv",
"csstools.postcss",
"blanu.vscode-styled-jsx",
"bradlc.vscode-tailwindcss"
2021-02-17 14:16:39 +01:00
],
"settings": {
"remote.autoForwardPorts": false,
2021-02-17 14:16:39 +01:00
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"python.formatting.provider": "black",
2022-02-26 20:11:00 +01:00
"python.languageServer": "Pylance",
2021-02-17 14:16:39 +01:00
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"python.testing.unittestArgs": ["-v", "-s", "./frigate/test"],
2021-02-17 14:16:39 +01:00
"files.trimTrailingWhitespace": true,
2022-02-26 20:11:00 +01:00
"eslint.workingDirectories": ["./web"],
"[json][jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsx][js][tsx][ts]": {
2022-03-06 05:16:31 +01:00
"editor.codeActionsOnSave": ["source.addMissingImports", "source.fixAll"],
"editor.tabSize": 2
2022-02-26 20:11:00 +01:00
},
"cSpell.ignoreWords": ["rtmp"],
"cSpell.words": ["preact"]
2021-02-17 14:16:39 +01:00
}
2021-05-05 00:12:35 +02:00
}