mirror of
https://github.com/we-promise/sure.git
synced 2026-04-20 12:34:12 +00:00
35 lines
954 B
JSON
35 lines
954 B
JSON
{
|
|
"name": "Sure",
|
|
"dockerComposeFile": "docker-compose.yml",
|
|
"service": "app",
|
|
"workspaceFolder": "/workspace",
|
|
"forwardPorts": [3000, 12345, 12346],
|
|
"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",
|
|
"Shopify.ruby-lsp",
|
|
"sorbet.sorbet-vscode-extension"
|
|
],
|
|
"settings": {
|
|
"terminal.integrated.defaultProfile.linux": "bash",
|
|
"terminal.integrated.defaultProfile.osx": "zsh",
|
|
"terminal.integrated.defaultProfile.windows": "pwsh"
|
|
}
|
|
}
|
|
}
|
|
}
|