Devcontainer setup

This commit is contained in:
2025-07-11 18:58:57 -03:00
parent f94ae9c31a
commit 19c25908da
8 changed files with 359 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
{
"name": "YouTube Video Classifier (Simple)",
"build": {
"dockerfile": "Dockerfile.simple"
},
"workspaceFolder": "/workspace",
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace,type=bind,consistency=cached",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python"
],
"settings": {
"python.defaultInterpreterPath": "/usr/bin/python3"
}
}
},
"forwardPorts": [11434, 6080],
"postCreateCommand": "pip install --user -r requirements.txt && echo 'Run: bash /home/vscode/start-simple.sh to start services'",
"remoteUser": "vscode"
}