Postgres database is missing relations #4468
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Hey @victor-at-square! I'm here to assist you with any bugs, questions, or contributions you have for Langfuse. Let's work together to resolve this issue! I found a similar discussion that might be helpful: Getting issue with local setup. The issue was resolved by running Langfuse locally via Docker Compose, which helped address Postgres connection configuration issues [1]. For your specific issue with missing relations in the Postgres database, ensure that the database schema is properly initialized. You can do this by running the necessary database migrations. Langfuse automatically applies migrations during container startup if the database schema has changed. You can also manually execute migrations using the command: pnpm run models:migrateMake sure your environment variables are correctly set, especially |
Beta Was this translation helpful? Give feedback.
-
|
Overriding the entrypoint was indeed the issue. Configure environment variables and running the Langfuse container as-is fixed it. |
Beta Was this translation helpful? Give feedback.


Overriding the entrypoint was indeed the issue. Configure environment variables and running the Langfuse container as-is fixed it.