-
Notifications
You must be signed in to change notification settings - Fork 10
add GOTENBERG configs in .env #48
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
Conversation
…nitial SDK configuration
…ackage configuration
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.
Pull request overview
This PR adds GOTENBERG server environment variables to the .env.example file, providing configuration for the Gotenberg document conversion service that is used by the PowerRAG application. The changes decompose the previously single GOTENBERG_URL variable into separate host and port components, then reconstruct the URL from these components.
Changes:
- Added
GOTENBERG_HOSTvariable with default value "gotenberg" - Added
GOTENBERG_PORTvariable with default value 3000 - Modified
GOTENBERG_URLto construct the URL from host and port variables using environment variable substitution
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Summary
add GOTENBERG server environment variables
Solution Description