mirror of
https://github.com/FranP-code/classify_saved_videos_yt.git
synced 2025-10-13 00:32:25 +00:00
27 lines
641 B
JSON
27 lines
641 B
JSON
{
|
|
"name": "YouTube Video Classifier",
|
|
"dockerComposeFile": "docker-compose.yml",
|
|
"service": "youtube-classifier",
|
|
"workspaceFolder": "/workspace",
|
|
"shutdownAction": "stopCompose",
|
|
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"ms-python.python",
|
|
"ms-python.pylint"
|
|
],
|
|
"settings": {
|
|
"python.defaultInterpreterPath": "/usr/bin/python3",
|
|
"terminal.integrated.defaultProfile.linux": "bash"
|
|
}
|
|
}
|
|
},
|
|
|
|
"forwardPorts": [11434, 6080],
|
|
|
|
"postCreateCommand": "pip install --user -r requirements.txt && sh /home/vscode/start-services.sh",
|
|
|
|
"remoteUser": "vscode"
|
|
}
|