Files
romm/.devcontainer/devcontainer.json
Georges-Antoine Assi 940a4e766c first cleanup batch
2025-08-25 12:49:42 -04:00

44 lines
1.0 KiB
JSON

{
"name": "ROMM Development",
"dockerComposeFile": "docker-compose.yml",
"service": "romm-dev",
"workspaceFolder": "/app",
"shutdownAction": "stopCompose",
"forwardPorts": [5000, 3000, 3306, 6379],
"portsAttributes": {
"5000": {
"label": "Backend API",
"onAutoForward": "notify"
},
"3000": {
"label": "Frontend Dev Server",
"onAutoForward": "notify"
},
"3306": {
"label": "MariaDB",
"onAutoForward": "silent"
},
"6379": {
"label": "Valkey/Redis",
"onAutoForward": "silent"
}
},
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.pylint",
"ms-python.black-formatter",
"vue.volar",
"ms-vscode.vscode-typescript-next"
],
"settings": {
"python.defaultInterpreterPath": "/usr/local/bin/python",
"terminal.integrated.defaultProfile.linux": "bash"
}
}
},
"postCreateCommand": "echo 'ROMM development environment ready!'",
"remoteUser": "root"
}