mirror of
https://github.com/run-llama/create-llama.git
synced 2026-07-21 02:15:30 -04:00
36 lines
1008 B
JSON
36 lines
1008 B
JSON
{
|
|
"image": "mcr.microsoft.com/vscode/devcontainers/typescript-node:dev-20-bullseye",
|
|
"features": {
|
|
"ghcr.io/devcontainers-contrib/features/turborepo-npm:1": {},
|
|
"ghcr.io/devcontainers-contrib/features/typescript:2": {},
|
|
"ghcr.io/devcontainers/features/python:1": {
|
|
"version": "3.11",
|
|
"toolsToInstall": ["flake8", "black", "mypy", "poetry"]
|
|
}
|
|
},
|
|
"customizations": {
|
|
"codespaces": {
|
|
"openFiles": ["README.md"]
|
|
},
|
|
"vscode": {
|
|
"extensions": [
|
|
"ms-vscode.typescript-language-features",
|
|
"esbenp.prettier-vscode",
|
|
"ms-python.python",
|
|
"ms-python.black-formatter",
|
|
"ms-python.vscode-flake8",
|
|
"ms-python.vscode-pylance"
|
|
],
|
|
"settings": {
|
|
"python.formatting.provider": "black",
|
|
"python.languageServer": "Pylance",
|
|
"python.analysis.typeCheckingMode": "basic"
|
|
}
|
|
}
|
|
},
|
|
"containerEnv": {
|
|
"POETRY_VIRTUALENVS_CREATE": "false"
|
|
},
|
|
"forwardPorts": [3000, 8000]
|
|
}
|