123456789101112131415161718 |
- api:
- address: ":8000"
- database:
- # Code likely not to work on another engine because it adds ?parseTime=true
- driver: mysql
- dsn: <user>:<pass>@[<server>]/<database>
- test_dsn: <user>:<pass>@[<server>]/<database>
- web:
- address: ":3000"
- # May be absolute or relative to the "kurzd" binary.
- assetsPath: ../../web/public
- # The initial version cache buster on Kurz start. Will probably not remain in config.
- assetsVersion: 1
- fullyQualifiedSiteBaseURL: &fqsu http://localhost:3000
- fullyQualifiedAssetsBaseURL: *fqsu
- # Delay is in seconds
- refreshDelay: 5
- siteName: "Kurz"
|