34 lines
1021 B
YAML
34 lines
1021 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
|
|
|
|
# AlpineBits Python config
|
|
# Use annotatedyaml for secrets and environment-specific overrides
|
|
|
|
logger:
|
|
level: "INFO" # Set to DEBUG for more verbose output
|
|
file: "alpinebits.log" # Log file path, or null for console only
|
|
|
|
alpine_bits_auth:
|
|
- hotel_id: "39054_001"
|
|
hotel_name: "Bemelmans Post"
|
|
username: "bemelman"
|
|
password: !secret BEMELMANS_PASSWORD
|
|
- hotel_id: "135"
|
|
hotel_name: "Testhotel"
|
|
username: "sebastian"
|
|
password: !secret BOB_PASSWORD
|
|
|
|
- hotel_id: "39052_001"
|
|
hotel_name: "Jagthof Kaltern"
|
|
username: "jagthof"
|
|
password: !secret JAGTHOF_PASSWORD
|
|
|
|
- hotel_id: "39040_001"
|
|
hotel_name: "Residence Erika"
|
|
username: "erika"
|
|
password: !secret ERIKA_PASSWORD
|