16 lines
569 B
JSON
16 lines
569 B
JSON
// For format details, see https://aka.ms/devcontainer.json
|
|
{
|
|
"name": "pallets/flask",
|
|
|
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
|
// "features": {},
|
|
|
|
// Runs the initial setup commands after the container is created.
|
|
"postCreateCommand": "sudo chmod +x .devcontainer/post-create-command.sh && .devcontainer/post-create-command.sh"
|
|
|
|
// Activates the virtual environment after the container is started.
|
|
// "postStartCommand": ". .venv/bin/activate"
|
|
|
|
// Configure tool-specific properties.
|
|
// "customizations": {},
|
|
}
|