Calorie counting web application written in the Go language

app.conf 1.0KB

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