Files
alpinebits_python/config/config.yaml
2025-10-06 11:47:28 +02:00

20 lines
651 B
YAML

# AlpineBits Python config
# Use annotatedyaml for secrets and environment-specific overrides
database:
url: "sqlite+aiosqlite:///alpinebits.db" # For local dev, use SQLite. For prod, override with PostgreSQL URL.
# url: "postgresql://user:password@host:port/dbname" # Example for Postgres
alpine_bits_auth:
- hotel_id: "12345"
hotel_name: "Bemelmans Post"
username: "alice"
password: !secret ALICE_PASSWORD
push_endpoint:
url: "https://example.com/push"
token: !secret PUSH_TOKEN_ALICE
username: "alice"
- hotel_id: "456"
hotel_name: "Bemelmans"
username: "bob"
password: !secret BOB_PASSWORD