Files
sure/.devcontainer/devcontainer.json
Juan José Mata 0fc70e9082 Add runServices for db and redis in devcontainer
Signed-off-by: Juan José Mata <juanjo.mata@gmail.com>
2025-10-26 23:16:25 +01:00

36 lines
890 B
JSON

{
"name": "Sure",
"dockerComposeFile": "docker-compose.yml",
"service": "app",
"runServices": [
"db",
"redis"
],
"workspaceFolder": "/workspace",
"containerEnv": {
"GIT_EDITOR": "code --wait",
"GITHUB_TOKEN": "${localEnv:GITHUB_TOKEN}",
"GITHUB_USER": "${localEnv:GITHUB_USER}",
"PLAID_CLIENT_ID": "foo",
"PLAID_SECRET": "bar"
},
"remoteEnv": {
"PATH": "/workspace/bin:${containerEnv:PATH}"
},
"postCreateCommand": "bundle install && npm install",
"customizations": {
"vscode": {
"extensions": [
"biomejs.biome",
"EditorConfig.EditorConfig",
"Shopify.ruby-extensions-pack"
],
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.defaultProfile.windows": "pwsh"
}
}
}
}