mirror of
https://github.com/ThePhaseless/Byparr.git
synced 2026-09-24 22:03:30 +01:00
19 lines
689 B
JSON
19 lines
689 B
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
|
// README at: https://github.com/devcontainers/templates/tree/main/src/python
|
|
{
|
|
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
|
"build": {
|
|
"dockerfile": "../Dockerfile",
|
|
"target": "devcontainer"
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": ["charliermarsh.ruff", "ms-python.python"],
|
|
"settings": {
|
|
"python.venvPath": "./venv"
|
|
}
|
|
}
|
|
},
|
|
"postCreateCommand": "uv sync --group test && cd .venv/lib/*/site-packages/seleniumbase/drivers && rm -f uc_driver && ln -s /usr/bin/chromedriver uc_driver"
|
|
}
|