diff --git a/backend/src/main/resources/application.properties b/backend/src/main/resources/application.properties index f9d2652..86e7790 100644 --- a/backend/src/main/resources/application.properties +++ b/backend/src/main/resources/application.properties @@ -1,28 +1,22 @@ # Default configuration for this application # Values will apply for all environments unless overridden by environment (in $PWD/config/application.properties) # or prefixed with %dev. or %test. - -quarkus.datasource.db-kind = postgresql -quarkus.datasource.username = quarkus -quarkus.datasource.password = quarkus - +quarkus.datasource.db-kind=postgresql +quarkus.datasource.username=quarkus +quarkus.datasource.password=quarkus quarkus.flyway.create-schemas=true quarkus.flyway.migrate-at-start=true - quarkus.http.cors=true quarkus.http.cors.origins=http://localhost:5173,http://localhost:8080 quarkus.http.cors.headers=accept, authorization, content-type, x-requested-with quarkus.http.cors.methods=GET, POST, OPTIONS, DELETE - %dev.quarkus.devservices.enabled=true %dev.quarkus.hibernate-orm.log.sql=true %dev.quarkus.hibernate-orm.validate-in-dev-mode=true %dev.quarkus.flyway.schemas=quarkus - %test.quarkus.rest-client.logging.scope=request-response %dev.quarkus.rest-client.logging.scope=request-response quarkus.log.category."org.jboss.resteasy.reactive.client.logging".level=DEBUG - # OpenAPI quarkus.smallrye-openapi.info-title=Task API %dev.quarkus.smallrye-openapi.info-title=Task API (development) @@ -33,16 +27,14 @@ quarkus.smallrye-openapi.info-contact-email=techsupport@example.com quarkus.smallrye-openapi.info-contact-name=Task API Support quarkus.smallrye-openapi.info-contact-url=http://exampleurl.com/contact quarkus.smallrye-openapi.operation-id-strategy=method - # Generate OpenAPI spec at build-time (can be grabbed and published in schema repository by CI process) quarkus.smallrye-openapi.store-schema-directory=target/openapi - # Custom application configurations app.services.ollama.model=${OLLAMA_MODEL:llama3.2} app.services.ollama.keep-alive-time=${OLLAMA_KEEP_ALIVE_TIME:10m} quarkus.rest-client.ollama_api_yaml.uri=${OLLAMA_HOST:http://localhost:11434} - quarkus.quinoa.ui-dir=../frontend +quarkus.quinoa.build-dir=build quarkus.quinoa.dev-server.port=5173 quarkus.quinoa.build-command=build quarkus.quinoa.dev-command=start