claude配置提交

This commit is contained in:
nojava
2026-05-23 03:22:38 +08:00
parent 20b7a57fb9
commit 284ecf4be8
4 changed files with 144 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
# IDE
.idea/
.vscode/
# Java / Maven build output
target/
*/target/
# Frontend dependencies
jog-frontend/node/
jog-frontend/node_modules/
# Frontend build output
jog-frontend/dist/
jog-admin/src/main/resources/static/
# Logs
*.log
# OS files
.DS_Store
Thumbs.db
# Git / Claude internal
.git/
.claude/worktrees/
+12
View File
@@ -0,0 +1,12 @@
{
"version": "0.0.1",
"configurations": [
{
"name": "frontend",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"cwd": "${workspaceFolder}/jog-frontend",
"port": 5173
}
]
}
+10
View File
@@ -0,0 +1,10 @@
{
"permissions": {
"allow": [
"Bash(mvn test *)",
"Bash(mvn package *)",
"Bash(mvn compile *)",
"Bash(curl -s http://localhost:8080/*)"
]
}
}