-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfeedback-flow.code-workspace
More file actions
56 lines (56 loc) · 1.55 KB
/
feedback-flow.code-workspace
File metadata and controls
56 lines (56 loc) · 1.55 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
{
"folders": [
{
"name": "Cloudflare worker",
"path": "./apps/cloudflare-worker"
},
{
"name": "Client app",
"path": "./apps/client",
},
{
"name": "GitHub Actions",
"path": "./.github"
},
{
"name": "Sensitive datas",
"path": "./_sensitive_datas"
},
{
"name": "Root",
"path": "."
}
],
"settings": {
"i18n-ally.keystyle": "flat",
"i18n-ally.sourceLanguage": "en-US",
"git.openRepositoryInParentFolders": "always",
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.defaultProfile.osx": "zsh",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"args": [
"-c",
"if [ -f ${workspaceFolder}/.env ]; then set -a && source ${workspaceFolder}/.env && set +a && echo '.env loaded successfully from ${workspaceFolder}/.env'; else echo '.env file not found'; fi && exec bash -i"
]
}
},
"terminal.integrated.profiles.osx": {
"zsh": {
"path": "zsh",
"args": [
"-c",
"if [ -f ${workspaceFolder}/.env ]; then set -a && source ${workspaceFolder}/.env && set +a && echo '.env loaded successfully from ${workspaceFolder}/.env'; else echo '.env file not found'; fi && exec zsh -i"
]
}
},
"terminal.integrated.env.linux": {
"PROJECT_ROOT": "${workspaceFolder}/../"
},
"terminal.integrated.env.osx": {
"PROJECT_ROOT": "${workspaceFolder}/../"
},
"dependi.npm.lockFileEnabled": false
}
}