Files
alpinebits_python/config/postgres.yaml.example
2025-10-16 16:56:27 +02:00

15 lines
559 B
Plaintext

# PostgreSQL configuration for migration
# Copy this file to postgres.yaml and fill in your PostgreSQL credentials
# This file should NOT be committed to git (add postgres.yaml to .gitignore)
database:
url: "postgresql+asyncpg://username:password@hostname:5432/database_name"
# Example: "postgresql+asyncpg://alpinebits_user:your_password@localhost:5432/alpinebits"
# If using annotatedyaml secrets:
# database:
# url: !secret POSTGRES_URL
#
# Then in secrets.yaml:
# POSTGRES_URL: "postgresql+asyncpg://username:password@hostname:5432/database_name"