Files
sure/.devcontainer/devcontainer.json
Juan José Mata e065c98396 Revert "Make bin/rails test pass in Dev Container" to avoid side-effects (#302)
* Revert "Add dummy PLAID_CLIENT_ID and PLAID_SECRET to env (#165)"

This reverts commit 617876f140.

* Make sure Plaid tests pass withtout ENV requirements
2025-11-07 19:53:31 +01:00

34 lines
833 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}"
},
"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"
}
}
}
}