dist.config.yml 651 B

123456789101112131415161718
  1. database:
  2. # Code likely not to work on another engine because it adds ?parseTime=true
  3. driver: mysql
  4. dsn: <user>:<pass>@[<server>]/<database>
  5. test_dsn: <user>:<pass>@[<server>]/<database>
  6. web:
  7. # May be absolute or relative to the current directory.
  8. assetsPath: web/public
  9. # The initial version cache buster on Kurz start. Will probably not remain in config.
  10. assetsVersion: 1
  11. listenAddress: ":3000"
  12. # Delay is in seconds
  13. refreshDelay: 5
  14. # Used to build absolute URLs.
  15. siteBaseURL: &sbu http://localhost:3000
  16. siteName: "Kurz"
  17. # Config line needs to be below siteBaseURL for the YAML reference to work.
  18. assetsBaseURL: *sbu