-
Notifications
You must be signed in to change notification settings - Fork 9
Running the application without external services #221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
3150266
e2aea21
42afa4e
2b85f99
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,6 +5,8 @@ security.sensible.secret=${SECURITY_KEY} | |
| whatsapp.incoming-message.queue-url=${INCOMING_MESSAGE_FIFO_URL} | ||
| whatsapp.recognized-message.queue-url=${RECOGNIZED_MESSAGE_FIFO_URL} | ||
|
|
||
| %local.quarkus.http.auth.proactive=false | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why we need this one?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This is necessary because, for the registration to be successful, without it the server returns a
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This error occurs because it's in a pull request that has already been fixed #195
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Good morning, @matheusandre1! I did a merge between the main branch and my branch. |
||
|
|
||
| # aws sqs | ||
| quarkus.sqs.devservices.enabled=false | ||
|
|
||
|
|
@@ -19,8 +21,10 @@ quarkus.hibernate-orm.schema-management.strategy=update | |
| %dev.quarkus.hibernate-orm.dev-ui.allow-hql=true | ||
|
|
||
| # ai | ||
| quarkus.langchain4j.openai.api-key=${OPENAI_API_KEY} | ||
| quarkus.langchain4j.openai.gpt-4-turbo.api-key=${OPENAI_API_KEY} | ||
| #quarkus.langchain4j.openai.api-key=${OPENAI_API_KEY} | ||
| #quarkus.langchain4j.openai.gpt-4-turbo.api-key=${OPENAI_API_KEY} | ||
| quarkus.langchain4j.ollama.base-url=http://localhost:11434/ | ||
| quarkus.langchain4j.ollama.chat-model.model-id=llama3.2-vision:11b | ||
|
|
||
| # quinoa (frontend) | ||
| quarkus.quinoa.enable-spa-routing=true | ||
|
|
||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you remove this file from changes?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's keep both
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay. Both are necessary, as one is used for local execution and the other for production execution.