2021-02-17 14:16:39 +01:00
|
|
|
{
|
2022-11-20 14:34:12 +01:00
|
|
|
"name": "Frigate Devcontainer",
|
2021-02-17 14:16:39 +01:00
|
|
|
"dockerComposeFile": "../docker-compose.yml",
|
2022-11-20 14:34:12 +01:00
|
|
|
"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": {}
|
|
|
|
},
|
2024-06-29 15:18:40 +02:00
|
|
|
"forwardPorts": [8971, 5000, 5001, 5173, 8554, 8555],
|
2022-11-20 14:34:12 +01:00
|
|
|
"portsAttributes": {
|
2024-06-29 15:18:40 +02:00
|
|
|
"8971": {
|
2024-05-18 18:36:13 +02:00
|
|
|
"label": "External NGINX",
|
|
|
|
"onAutoForward": "silent"
|
|
|
|
},
|
2022-11-20 14:34:12 +01:00
|
|
|
"5000": {
|
2024-05-18 18:36:13 +02:00
|
|
|
"label": "Internal NGINX",
|
2022-11-20 14:34:12 +01:00
|
|
|
"onAutoForward": "silent"
|
|
|
|
},
|
|
|
|
"5001": {
|
|
|
|
"label": "Frigate API",
|
|
|
|
"onAutoForward": "silent"
|
|
|
|
},
|
|
|
|
"5173": {
|
|
|
|
"label": "Vite Server",
|
|
|
|
"onAutoForward": "silent"
|
|
|
|
},
|
|
|
|
"8554": {
|
|
|
|
"label": "gortc RTSP",
|
|
|
|
"onAutoForward": "silent"
|
|
|
|
},
|
|
|
|
"8555": {
|
|
|
|
"label": "go2rtc WebRTC",
|
|
|
|
"onAutoForward": "silent"
|
|
|
|
}
|
|
|
|
},
|
2023-04-24 14:24:28 +02:00
|
|
|
"customizations": {
|
|
|
|
"vscode": {
|
|
|
|
"extensions": [
|
|
|
|
"ms-python.python",
|
|
|
|
"ms-python.vscode-pylance",
|
|
|
|
"visualstudioexptteam.vscodeintellicode",
|
|
|
|
"mhutchie.git-graph",
|
|
|
|
"ms-azuretools.vscode-docker",
|
|
|
|
"streetsidesoftware.code-spell-checker",
|
|
|
|
"esbenp.prettier-vscode",
|
|
|
|
"dbaeumer.vscode-eslint",
|
|
|
|
"mikestead.dotenv",
|
|
|
|
"csstools.postcss",
|
|
|
|
"blanu.vscode-styled-jsx",
|
2023-05-29 12:31:17 +02:00
|
|
|
"bradlc.vscode-tailwindcss",
|
2024-09-22 17:56:57 +02:00
|
|
|
"charliermarsh.ruff",
|
|
|
|
"eamodio.gitlens"
|
2023-04-24 14:24:28 +02:00
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"remote.autoForwardPorts": false,
|
|
|
|
"python.formatting.provider": "none",
|
|
|
|
"python.languageServer": "Pylance",
|
|
|
|
"editor.formatOnPaste": false,
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"editor.formatOnType": true,
|
|
|
|
"python.testing.pytestEnabled": false,
|
|
|
|
"python.testing.unittestEnabled": true,
|
|
|
|
"python.testing.unittestArgs": ["-v", "-s", "./frigate/test"],
|
|
|
|
"files.trimTrailingWhitespace": true,
|
|
|
|
"eslint.workingDirectories": ["./web"],
|
2023-05-31 16:12:43 +02:00
|
|
|
"isort.args": ["--settings-path=./pyproject.toml"],
|
2023-04-24 14:24:28 +02:00
|
|
|
"[python]": {
|
2023-11-18 15:04:43 +01:00
|
|
|
"editor.defaultFormatter": "charliermarsh.ruff",
|
2023-06-16 14:32:43 +02:00
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"editor.codeActionsOnSave": {
|
|
|
|
"source.fixAll": true,
|
|
|
|
"source.organizeImports": true
|
|
|
|
}
|
2023-04-24 14:24:28 +02:00
|
|
|
},
|
|
|
|
"[json][jsonc]": {
|
|
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
|
|
},
|
|
|
|
"[jsx][js][tsx][ts]": {
|
|
|
|
"editor.codeActionsOnSave": [
|
|
|
|
"source.addMissingImports",
|
|
|
|
"source.fixAll"
|
|
|
|
],
|
|
|
|
"editor.tabSize": 2
|
|
|
|
},
|
|
|
|
"cSpell.ignoreWords": ["rtmp"],
|
2023-06-16 14:32:43 +02:00
|
|
|
"cSpell.words": ["preact", "astype", "hwaccel", "mqtt"]
|
2023-04-24 14:24:28 +02:00
|
|
|
}
|
|
|
|
}
|
2021-02-17 14:16:39 +01:00
|
|
|
}
|
2021-05-05 00:12:35 +02:00
|
|
|
}
|