- Installs UV
- Setups up docker / devcontainer CLI ? (optional)
- Initialize the vscode settings with this:
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
".venv": true,
".regression_files": true,
".pytest_cache": true,
".ruff_cache": true
},
"editor.codeActionsOnSave": {
"source.fixAll.ruff": "explicit",
"source.organizeImports.ruff": "explicit",
},
"python.experiments.optOutFrom": [
"pythonTerminalEnvVarActivation"
],
"python.terminal.activateEnvInCurrentTerminal": false,
"python.terminal.activateEnvironment": true,
}