multi-downloader-client/.devcontainer/devcontainer.json
Nicolas COMPAIN de205f9870
All checks were successful
continuous-integration/drone/push Build is passing
Update devcontainer.json and MultiDownloaderClient.php
2024-01-12 09:52:27 +00:00

28 lines
952 B
JSON

{
"name": "multi-downloader-client",
"image": "rg.fr-par.scw.cloud/kubernetes/devcontainer:php-8.3",
"containerEnv": {
"MULTI_DOWNLOADER_ACCESS_KEY": "YOUR_API_KEY",
"MULTI_DOWNLOADER_SECRET_KEY": "YOUR_API_SECRET_KEY"
// "MULTI_DOWNLOADER_URL": "https://multi-dl.kub.nwb.fr"
},
"customizations": {
"vscode": {
"extensions": [
"felixfbecker.php-debug",
"bmewburn.vscode-intelephense-client",
"axetroy.vscode-markdown-script",
"VisualStudioExptTeam.vscodeintellicode",
"stevencl.addDocComments",
"usernamehw.errorlens",
"ms-azuretools.vscode-docker",
"GitHub.copilot-nightly",
"GitHub.copilot-chat",
"Gruntfuggly.todo-tree"
]
}
},
"remoteUser": "vscode",
"postCreateCommand": "composer install"
}