Skip to content

Commit 8328e59

Browse files
committedJan 25, 2023
improve vscode debug
1 parent 7618b2a commit 8328e59

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed
 

‎.vscode/launch.json

+16-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
{
2-
// Verwendet IntelliSense zum Ermitteln möglicher Attribute.
3-
// Zeigen Sie auf vorhandene Attribute, um die zugehörigen Beschreibungen anzuzeigen.
4-
// Weitere Informationen finden Sie unter https://go.microsoft.com/fwlink/?linkid=830387
52
"version": "0.2.0",
63
"configurations": [
74
{
@@ -15,6 +12,22 @@
1512
"<node_internals>/**"
1613
],
1714
"type": "node"
15+
},
16+
{
17+
"request": "launch",
18+
"type": "node",
19+
"console": "integratedTerminal",
20+
"internalConsoleOptions": "neverOpen",
21+
"name": "node (nodemon)",
22+
"program": "${workspaceFolder}/src/index.ts",
23+
"restart": true,
24+
"runtimeExecutable": "yarn",
25+
"runtimeArgs": [
26+
"dev"
27+
],
28+
"skipFiles": [
29+
"<node_internals>/**"
30+
]
1831
}
1932
]
2033
}

‎services/memos/app-simplified.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ metadata:
66
name: memos
77
spec:
88
name: memos
9-
deploymentstrategy: docker
109
domain: memos.lacolhost.com
10+
deploymentstrategy: docker
1111
image:
1212
repository: neosmemo/memos
1313
tag: latest

0 commit comments

Comments
 (0)
Please sign in to comment.