Replies: 1 comment
-
Hello, when you use the endpoint in v0.0.2 POST I hope this helps |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We could successfully establish a connection to the PostgreSQL database using the following YAML update:
environment:
DB_HOST: "localhost" # Replace with your PostgreSQL server hostname or IP
DB_PORT: "5432" # PostgreSQL default port
DB_NAME: "your_database" # Your PostgreSQL database name
DB_USER: "postgres_uname" # Your PostgreSQL database username
DB_PASSWORD: "postgres_pword"
However, by default, the connection is made to the 'public' schema. We attempted to specify a different schema using DB_SCHEMA: "my_schema" in the YAML configuration,
but it did not produce the desired outcome. Please advice.
Beta Was this translation helpful? Give feedback.
All reactions