20 lines
647 B
YAML
20 lines
647 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: "123"
|
|
hotel_name: "Frangart Inn"
|
|
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 |