<@ULVA73B9P> on which port the user database be po...
# marvin-ai
f
@Marvin on which port the user database be pointing at?
m
thought for 73.3 seconds
Do you mean the Prefect server’s backing database? If so: - SQLite (default in Prefect 3.x): no port (it’s a local file, e.g., ~/.prefect/prefect.db) - PostgreSQL (recommended for production): default port is 5432 - You can set it via
PREFECT_API_DATABASE_PORT=5432
or include it in
PREFECT_API_DATABASE_CONNECTION_URL
, e.g.:
Copy code
PREFECT_API_DATABASE_CONNECTION_URL="<postgresql+asyncpg://user:pass@host:5432/prefect>"
If you were asking about the Prefect API/UI server itself, that listens on port 4200 by default. Let me know which one you meant and I can tailor the exact config.