Files
presentation_cybersecurite/.devcontainer/devcontainer.json

18 lines
410 B
JSON

{
"name": "Presentation Cybersecurite - Lazarus Group",
"image": "mcr.microsoft.com/devcontainers/javascript-node:20",
"forwardPorts": [8000],
"postCreateCommand": "npm install",
"customizations": {
"vscode": {
"extensions": [
"ritwickdey.LiveServer"
],
"settings": {
"liveServer.settings.port": 8000,
"liveServer.settings.root": "/"
}
}
}
}