-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathdevcontainer.json
More file actions
49 lines (49 loc) · 1.3 KB
/
devcontainer.json
File metadata and controls
49 lines (49 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "Feldera dev",
"dockerComposeFile": [
"./docker-compose.devcontainer.yml",
"../deploy/docker-compose.yml"
],
"service": "workspace",
"runServices": [
"postgres-dev",
"db-admin"
],
"workspaceFolder": "/workspaces/feldera",
"shutdownAction": "stopCompose",
"customizations": {
"vscode": {
"extensions": [
"GitHub.vscode-github-actions",
"ms-vsliveshare.vsliveshare",
"rust-lang.rust-analyzer",
"serayuzgur.crates",
"vadimcn.vscode-lldb",
"mike-co.import-sorter",
"lihui.vs-color-picker",
"ms-playwright.playwright",
"svelte.svelte-vscode",
"bradlc.vscode-tailwindcss",
"esbenp.prettier-vscode",
"ms-python.python",
"biomejs.biome"
],
"settings": {
"editor.formatOnSave": true,
"terminal.integrated.defaultProfile.linux": "bash",
"files.exclude": {
"**/CODE_OF_CONDUCT.md": true,
"**/LICENSE": true
},
"importSorter.generalConfiguration.configurationFilePath": "./import-sorter.json",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.configPath": "js-packages/web-console/.prettierrc"
}
}
},
"remoteUser": "user",
"mounts": [
"source=${localWorkspaceFolder},target=${containerWorkspaceFolder},type=bind"
],
"postCreateCommand": "bash /workspaces/feldera/.devcontainer/postCreate.sh"
}