Files
optuna-dashboard/.devcontainer/devcontainer.json
T
2023-05-22 23:05:22 +09:00

19 lines
379 B
JSON

{
"name": "dev-optuna-dashboard",
"dockerFile": "Dockerfile",
"forwardPorts": [9000],
"containerEnv": {},
"runArgs": ["--init"],
"postCreateCommand": "./.devcontainer/postCreateCommand.sh",
"customizations": {
"vscode": {
"settings": {
"editor.renderWhitespace": "all"
},
"extensions": [
"ms-python.python"
]
}
}
}