Updating docs and readme due to missing SSL/PG pool configuration informations #195
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request updates documentation across multiple files to improve clarity, consistency, and support for secure database connections. The main changes include standardizing references from "Postgres" to "PostgreSQL," updating configuration instructions to use the new
poolConfig
option for database connections, and adding comprehensive guidance for SSL certificate handling using base64 encoding. These changes help users correctly configure the Stripe Sync Engine for secure deployments and make the documentation easier to follow.Documentation consistency and clarity:
README.md
,docs/index.md
,docs/typescript.md
,docs/docker.md
, andpackages/fastify-app/README.md
for accuracy and consistency. [1] [2] [3] [4] [5]Configuration and setup improvements:
databaseUrl
andmaxPostgresConnections
options in favor of a newpoolConfig
object for configuring PostgreSQL connections, including support for SSL parameters, in both TypeScript and Edge Function usage guides. [1] [2] [3]PG_SSL_CONFIG_ENABLED
,PG_SSL_CA
, etc.) and clarified their usage in Docker and Edge Function deployments. [1] [2] [3]SSL certificate handling:
Minor documentation fixes:
These updates ensure users have clear, secure, and up-to-date instructions for deploying and configuring the Stripe Sync Engine in various environments.
closes #194