45 lines
1.5 KiB
JSON
45 lines
1.5 KiB
JSON
{
|
|
"name": "ollama-docker",
|
|
"dockerComposeFile": ["../docker-compose.yml"],
|
|
"service": "app",
|
|
"workspaceFolder": "/code",
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"ms-python.python",
|
|
"ms-python.vscode-pylance",
|
|
"ms-python.autopep8",
|
|
"ms-python.debugpy",
|
|
"ms-python.isort",
|
|
"donjayamanne.python-environment-manager",
|
|
"donjayamanne.python-extension-pack",
|
|
"etmoffat.pip-packages",
|
|
"aaron-bond.better-comments",
|
|
"formulahendry.auto-rename-tag",
|
|
"formulahendry.code-runner",
|
|
"github.copilot",
|
|
"github.vscode-pull-request-github",
|
|
"ms-azuretools.vscode-docker",
|
|
"ms-vscode-remote.remote-containers",
|
|
"ms-vscode-remote.remote-ssh",
|
|
"ms-vscode-remote.vscode-remote-extensionpack",
|
|
"ms-toolsai.jupyter",
|
|
"ritwickdey.liveserver",
|
|
"visualstudioexptteam.vscodeintellicode",
|
|
"vscode-icons-team.vscode-icons",
|
|
"esbenp.prettier-vscode",
|
|
"jpotterm.simple-vim"
|
|
],
|
|
"settings": {
|
|
"python.pythonPath": "/usr/local/bin/python",
|
|
"python.linting.pylintEnabled": false,
|
|
"python.linting.flake8Enabled": true,
|
|
"python.linting.flake8Args": ["--max-line-length=88"],
|
|
"python.formatting.provider": "ms-python.python",
|
|
"editor.formatOnSave": true
|
|
}
|
|
}
|
|
},
|
|
"postCreateCommand": "pip install -r requirements.txt"
|
|
}
|