Add configuration file template

This commit is contained in:
2026-04-29 19:05:35 +02:00
parent 8262aa72ab
commit 2072c9685c
2 changed files with 32 additions and 1 deletions
+30
View File
@@ -0,0 +1,30 @@
[server]
# The host to bind the socket. Default is '0.0.0.0'
# host=
# The port to listen. Default is 3000.
# port=
[docs]
# The path for the Swagger UI documentation. If an empty path is
# specified, no Swagger UI documentation will be available. Default is
# '/docs'.
# swagger=
# The path for the ReDoc documentation. If an empty path is specified,
# no ReDoc documentation will be available. Default is '/redoc'.
# redoc=
# The path for the Open API API specification. If an empty path is
# specified, no API specification will be available. Default is
# '/openapi.json'.
# Warning: If the API specification is not available, Swagger UI and
# ReDoc documentation may not work.
# openapi=
[logging]
# The file for the logs. Default is stdout ('/proc/self/fd/1').
# logfile=
# The log level. Default is INFO.
# loglevel=
+1
View File
@@ -5,3 +5,4 @@
### Added ### Added
- Add basic API structure - Add basic API structure
- Add configuration file template