- Added H2 in-memory database support, replacing PostgreSQL for local development. - Updated application properties to reflect new database configuration. - Modified Vite build output directory to integrate with Quarkus static resources. - Enhanced entity classes to use @Lob for character and story descriptions, allowing for larger text storage. - Updated development workflow documentation to reflect changes in database setup and prerequisites.
39 lines
723 B
Plaintext
39 lines
723 B
Plaintext
/target/
|
|
/src/main/web/node_modules/
|
|
/src/main/web/node/
|
|
/.idea/
|
|
/.DS_Store
|
|
# Maven / Java build output
|
|
target/
|
|
|
|
# Frontend (src/main/web) temporary and build artifacts
|
|
src/main/web/node_modules/
|
|
src/main/web/dist/
|
|
src/main/web/.vite/
|
|
src/main/web/.cache/
|
|
src/main/web/.eslintcache
|
|
src/main/web/coverage/
|
|
src/main/web/npm-debug.log*
|
|
src/main/web/yarn-debug.log*
|
|
src/main/web/yarn-error.log*
|
|
src/main/web/pnpm-debug.log*
|
|
|
|
# IntelliJ IDEA
|
|
.idea/
|
|
*.iml
|
|
out/
|
|
|
|
# Other common IDE/editor files
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Generated API client (regenerated by mvn generate-sources)
|
|
src/main/web/src/api/generated/
|
|
|
|
# Vite build output (built into Quarkus static resources)
|
|
src/main/resources/META-INF/resources/
|
|
|
|
# OS files
|
|
.DS_Store
|