Calorie counting web application written in the Go language

app.conf 951B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. app.name=grassfed
  2. app.secret=LKfEwFXUpTy6uedNSLesni6xh7nV18sVwVWvbSJWGjUusrOvB8RHxrxPap0w4QPE
  3. http.addr=
  4. http.port=9000
  5. http.ssl=false
  6. http.sslcert=
  7. http.sslkey=
  8. cookie.httponly=false
  9. cookie.prefix=REVEL
  10. cookie.secure=false
  11. format.date=01/02/2006
  12. format.datetime=01/02/2006 15:04
  13. results.chunked=false
  14. log.trace.prefix = "TRACE "
  15. log.info.prefix = "INFO "
  16. log.warn.prefix = "WARN "
  17. log.error.prefix = "ERROR "
  18. # The default language of this application.
  19. i18n.default_language=en
  20. module.static=github.com/revel/revel/modules/static
  21. [dev]
  22. mode.dev=true
  23. results.pretty=true
  24. watch=true
  25. module.testrunner = github.com/revel/revel/modules/testrunner
  26. log.trace.output = off
  27. log.info.output = stderr
  28. log.warn.output = stderr
  29. log.error.output = stderr
  30. [prod]
  31. mode.dev=false
  32. results.pretty=false
  33. watch=false
  34. module.testrunner =
  35. log.trace.output = off
  36. log.info.output = off
  37. log.warn.output = %(app.name)s.log
  38. log.error.output = %(app.name)s.log