-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
64 lines (53 loc) · 1.61 KB
/
devcontainer.json
File metadata and controls
64 lines (53 loc) · 1.61 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/python
{
"name": "Python 3",
"build": {
"dockerfile": "Dockerfile"
},
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "dbt deps --project-dir transform",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"innoverio.vscode-dbt-power-user"
],
"settings": {
// "files.associations": {
// "*.sql": "jinja-sql"
// },
"files.exclude": {
// https://github.com/microsoft/vscode/issues/869#issuecomment-298878442
// transform/
// .env
"[^t.]*": true,
"t[^r]*": true,
"tr[^a]*": true,
"tra[^n]*": true,
"tran[^s]*": true,
"trans[^f]*": true,
"transf[^o]*": true,
"transfo[^r]*": true,
"transform?*": true,
".[^e]*": true,
".e[^n]*": true,
".en[^v]*": true,
".env?*": true,
"transform/**/.gitignore": true,
"transform/**/.gitkeep": true
},
// dbt Power User
"dbt.dbtPythonPathOverride": "/usr/local/py-utils/venvs/dbt-core/bin/python",
"dbt.profilesDirOverride": "profile",
"dbt.queryLimit": 200
}
}
},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}