- Update .gitignore to include additional build outputs and IDE files. - Modify pom.xml to add new plugin versions and configurations for frontend and OpenAPI TypeScript client generation. - Introduce project guidelines in roleplay-project.mdc, detailing architecture, coding standards, and testing practices. - Add initial documentation for the RolePlay concept and specifications. - Implement catch-all JAX-RS resource for serving the React application and establish API base path in application.yml. - Create foundational web components and TypeScript configuration for the frontend application.
14 lines
270 B
YAML
14 lines
270 B
YAML
quarkus:
|
|
application:
|
|
name: roleplay
|
|
liquibase:
|
|
change-log: db/migration/changelog.xml
|
|
migrate-at-start: false
|
|
rest-client:
|
|
ollama-api:
|
|
url: http://debian:11434
|
|
connect-timeout: 5000
|
|
read-timeout: 120000
|
|
rest:
|
|
path: /api/v1
|