Add welcome message

This commit is contained in:
emisargent 2023-02-10 19:30:33 +00:00
parent a927a243b0
commit 3baa270f7c
3 changed files with 11 additions and 9 deletions

View file

@ -2,15 +2,12 @@
{
"name": "pallets/flask",
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Displays a custom welcome message
"onCreateCommand": "sudo cp .devcontainer/welcome-message.txt /usr/local/etc/vscode-dev-containers/first-run-notice.txt",
// Runs the initial setup commands after the container is created.
"postCreateCommand": "sudo chmod +x .devcontainer/post-create-command.sh && .devcontainer/post-create-command.sh"
"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": {},
"postStartCommand": ". .venv/bin/activate"
}