Updated the config file format

This commit is contained in:
2026-03-23 01:21:30 +00:00
parent 6fcdffd6c4
commit d835ac1eda

View File

@@ -1,9 +1,13 @@
---
server:
listen_addr: ":8080"
default_format: json
databases:
- name: weatherdb
driver: postgres
params:
uri: postgres://weatherdb:5432/{{ feedstack_weatherdb_database }}?sslmode=disable
username: {{ feedstack_weatherdb_user }}
password: {{ feedstack_weatherdb_password }}
uri: postgres://{{ feedstack_weatherdb_user }}:{{ feedstack_weatherdb_password }}@weatherdb:5432/{{ feedstack_weatherdb_database }}?sslmode=disable
templates:
base_dir: templates
...