dist.config.yml 591 B

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