mirror of
https://github.com/FranP-code/classify_saved_videos_yt.git
synced 2025-10-13 00:32:25 +00:00
26 lines
636 B
JSON
26 lines
636 B
JSON
{
|
|
"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"
|
|
}
|