update devcontainer.json

This commit is contained in:
Sina Atalay 2024-04-07 16:42:30 +00:00 committed by GitHub
parent 31b540e0ac
commit 208daf5427
1 changed files with 2 additions and 2 deletions

View File

@ -14,10 +14,10 @@
// "forwardPorts": [], // "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created. // Use 'postCreateCommand' to run commands after the container is created.
// Clone the submodules, create a virtual environment, and install all the dependencies. // Clone the submodules, and install all the dependencies.
"postCreateCommand": { "postCreateCommand": {
"get_tinytex": "git submodule update --init", "get_tinytex": "git submodule update --init",
"create_environment": "python3 -m venv .venv && source .venv/bin/activate && pip install .[dev,tests,docs]" "install_dependencies": "cd /workspaces/rendercv && pip install .[dev,tests,docs]"
} }
// Configure tool-specific properties. // Configure tool-specific properties.