dist.config.yml 675 B

1234567891011121314151617181920
  1. api:
  2. listenAddress: ":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. # May be absolute or relative to the current directory.
  10. assetsPath: web/public
  11. # The initial version cache buster on Kurz start. Will probably not remain in config.
  12. assetsVersion: 1
  13. listenAddress: ":3000"
  14. # Delay is in seconds
  15. refreshDelay: 5
  16. # Used to build absolute URLs.
  17. siteBaseURL: &sbu http://localhost:3000
  18. siteName: "Kurz"
  19. # Lines needs to be below siteBaseURL for the YAML reference to work.
  20. assetsBaseURL: *sbu