Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .claude/settings.local.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"permissions": {
"allow": [
"Bash(curl:*)",
"Bash(mvn clean compile:*)",
"Bash(mvn test:*)",
"Bash(tee:*)",
"Bash(git add:*)",
"Bash(git commit:*)",
"Bash(mvn clean test:*)",
"Bash(timeout 60 mvn test:*)",
"Bash(grep:*)",
"Bash(echo:*)",
"Bash(find:*)",
"Bash(ls:*)",
"Bash(pkill:*)",
"Bash(lsof:*)",
"Bash(xargs kill:*)",
"Bash(while ps aux)",
"Bash(do sleep 5)",
"Bash(done)",
"Bash(tail:*)"
]
}
}
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"java.compile.nullAnalysis.mode": "automatic"
}
36 changes: 36 additions & 0 deletions backend-quarkus/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Maven
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties
.mvn/wrapper/maven-wrapper.jar

# IntelliJ IDEA
.idea/
*.iml
*.iws
*.ipr

# Eclipse
.project
.classpath
.settings/
bin/

# VS Code
.vscode/

# Quarkus
.quarkus/

# OS
.DS_Store
Thumbs.db

# Logs
*.log
Loading