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).
52 lines
507 B
Text
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/
|