mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 22:34:47 +00:00
* Revert "Add dummy PLAID_CLIENT_ID and PLAID_SECRET to env (#165)"
This reverts commit 617876f140.
* Make sure Plaid tests pass withtout ENV requirements
34 lines
833 B
JSON
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"
|
|
}
|
|
}
|
|
}
|
|
}
|