Multiple implementations of the same back-end application. The aim is to provide quick, side-by-side comparisons of different technologies (languages, frameworks, libraries) while preserving consistent business logic across all implementations.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
1011 B

{
"name": "PHP 8.2 dev container",
"dockerComposeFile": "./docker-compose.yml",
"service": "php",
"workspaceFolder": "/var/www/html",
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"php.validate.executablePath": "/usr/local/bin/php",
"php.debug.executablePath": "/usr/local/bin/php"
},
"extensions": [
"xdebug.php-debug",
"devsense.phptools-vscode",
"bmewburn.vscode-intelephense-client",
"ms-vscode.vscode-json",
"mrmlnc.vscode-json5",
"mrmlnc.vscode-json2"
]
}
},
"forwardPorts": [50080],
"remoteUser": "developer",
"containerEnv": {
"USER_ID": "${localEnv:USER_ID:-1000}",
"GROUP_ID": "${localEnv:GROUP_ID:-1000}"
},
"postCreateCommand": "sudo chown -R developer:developer /var/www/html"
}