bilhej/.gitignore
Joakim Mörling c7d443f236 docs: update README for Gradle at root, add convenience task docs
Update all references to match the new repo-root Gradle layout
after moving the wrapper out of backend/.

- Quick Start: add ./gradlew up alternative and hint at ./gradlew check
- Spring profiles: ./gradlew bootRun → ./gradlew :backend:bootRun
- Development section: add All-in-one subsection with check/up/down/reset
- Backend dev: cd backend && ./gradlew bootRun → ./gradlew :backend:bootRun
- Development vs Production table: ./gradlew bootRun → ./gradlew :backend:bootRun
- Project Structure tree: add gradlew, gradle/, settings.gradle, build.gradle
- Remove ARCHITECTURE.md reference (file never existed)
- Add Database reset section with ./gradlew reset

Also add .gradle/ and build/ to .gitignore with gradle-wrapper.jar
exception (was staged but not committed with previous refactor).
2026-05-01 18:44:05 +02:00

52 lines
507 B
Text

# Dependencies
node_modules/
frontend/node_modules/
# Build output
dist/
frontend/dist/
target/
*.class
*.jar
*.war
!.mvn/wrapper/maven-wrapper.jar
!gradle/wrapper/gradle-wrapper.jar
# Environment
.env
!.env.example
# IDE
.idea/
*.iml
.vscode/
.project
.classpath
.settings/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Logs
*.log
# Obsidian (personal vault, not project)
.obsidian/
# Docker
docker-compose.override.yml
certs/
# Gradle
.gradle/
build/
# Java
*.hprof
# Test
coverage/
frontend/coverage/