-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFountainLifeNotebook.code-workspace
More file actions
89 lines (89 loc) · 2.26 KB
/
Copy pathFountainLifeNotebook.code-workspace
File metadata and controls
89 lines (89 loc) · 2.26 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"folders": [
{
"name": "Backend",
"path": "."
},
{
"name": "Frontend",
"path": "../jacobi-solutions.fountain-life-notebook.frontend"
}
],
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Backend: Debug API",
"type": "node",
"request": "launch",
"envFile": "${workspaceFolder:Backend}/.env",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "start:debug"],
"cwd": "${workspaceFolder:Backend}",
"console": "integratedTerminal",
"autoAttachChildProcesses": true,
"sourceMaps": true,
"skipFiles": ["<node_internals>/**"]
},
{
"name": "Frontend: Debug Chrome",
"type": "chrome",
"request": "launch",
"preLaunchTask": "Frontend: Dev Server",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder:Frontend}/app",
"sourceMaps": true
}
],
"compounds": [
{
"name": "Full Stack: Debug Backend + Frontend",
"configurations": ["Backend: Debug API", "Frontend: Debug Chrome"],
"preLaunchTask": "Mongo: Up"
}
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Mongo: Up",
"type": "shell",
"command": "docker compose -f docker-compose.local.yml up -d mongo",
"options": {
"cwd": "${workspaceFolder:Backend}"
},
"problemMatcher": []
},
{
"label": "Mongo: Down",
"type": "shell",
"command": "docker compose -f docker-compose.local.yml down",
"options": {
"cwd": "${workspaceFolder:Backend}"
},
"problemMatcher": []
},
{
"label": "Frontend: Dev Server",
"type": "shell",
"command": "npm run dev -- --host 127.0.0.1",
"options": {
"cwd": "${workspaceFolder:Frontend}"
},
"isBackground": true,
"problemMatcher": {
"owner": "vite",
"pattern": {
"regexp": "^$"
},
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": "Local:\\s+http://127\\.0\\.0\\.1:5173"
}
}
}
]
}
}