dist.config.yml 772 B

123456789101112131415161718192021
  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/ui/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. # Each instance should have its own session key
  15. sessionKey: this_is_a_bad_key_change_it
  16. sessionName: KURZSESSID
  17. # Used to build absolute URLs.
  18. siteBaseURL: &sbu http://localhost:3000
  19. siteName: "Kurz"
  20. # Config line needs to be below siteBaseURL for the YAML reference to work.
  21. assetsBaseURL: *sbu