Calorie counting web application written in the Go language

app.conf 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. app.name=grassfed
  2. app.secret=LKfEwFXUpTy6uedNSLesni6xh7nV18sVwVWvbSJWGjUusrOvB8RHxrxPap0w4QPE
  3. http.addr=
  4. http.port=5090
  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. db.import = github.com/mattn/go-sqlite3
  21. db.driver = sqlite3
  22. db.spec = grassfed.db
  23. module.static=github.com/revel/revel/modules/static
  24. [dev]
  25. mode.dev=true
  26. results.pretty=true
  27. watch=true
  28. module.testrunner = github.com/revel/revel/modules/testrunner
  29. log.trace.output = off
  30. log.info.output = stderr
  31. log.warn.output = stderr
  32. log.error.output = stderr
  33. [prod]
  34. mode.dev=false
  35. results.pretty=false
  36. watch=false
  37. module.testrunner =
  38. log.trace.output = off
  39. log.info.output = off
  40. log.warn.output = %(app.name)s.log
  41. log.error.output = %(app.name)s.log