20 lines
657 B
YAML
20 lines
657 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: "135"
|
|
hotel_name: "Bemelmans"
|
|
username: "sebastian"
|
|
password: !secret BOB_PASSWORD |