Add devcontainer settings

This commit is contained in:
c-bata
2023-05-22 23:05:22 +09:00
parent 9bd6b269ee
commit fdcd3bd07c
3 changed files with 45 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{
"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"
]
}
}
}