first commit

This commit is contained in:
Yangtao
2025-11-18 17:48:20 +08:00
commit 6e56cab848
196 changed files with 65809 additions and 0 deletions

33
.zed/debug.json Normal file
View File

@ -0,0 +1,33 @@
// Project-local debug tasks
//
// For more documentation on how to configure debug tasks,
// see: https://zed.dev/docs/debugger
[
{
"adapter": "Delve",
"label": "app_dev",
"request": "launch",
"mode": "debug",
"program": "${ZED_WORKTREE_ROOT}/cmd/server/main.go",
"cwd": "${ZED_WORKTREE_ROOT}",
"args": ["app", "-e", "dev"]
},
{
"adapter": "Delve",
"label": "admin_dev",
"request": "launch",
"mode": "debug",
"program": "${ZED_WORKTREE_ROOT}/cmd/server/main.go",
"cwd": "${ZED_WORKTREE_ROOT}",
"args": ["admin", "-e", "dev"]
},
{
"adapter": "Delve",
"label": "cms_dev",
"request": "launch",
"mode": "debug",
"program": "${ZED_WORKTREE_ROOT}/cmd/server/main.go",
"cwd": "${ZED_WORKTREE_ROOT}",
"args": ["cms", "-e", "dev"]
}
]