Create a devcontainer to do some basic development task via GitHub codespaces. (#5589)

Only show in developer changelog
This commit is contained in:
Florian Rival
2023-08-22 12:42:52 +02:00
committed by GitHub
parent 4575935a42
commit 79a14e220d

View File

@@ -0,0 +1,14 @@
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"onCreateCommand": "cd newIDE/app && npm install && cd ../electron-app && npm install",
"forwardPorts": [3000],
"customizations": {
"vscode": {
"extensions": [
"esbenp.prettier-vscode",
"ms-vscode.cpptools",
"flowtype.flow-for-vscode"
]
}
}
}