mirror of
https://github.com/kevin-DL/revel-cmd.git
synced 2026-01-11 18:54:31 +00:00
Adding consistent values and example formatting
This commit is contained in:
@@ -3,7 +3,8 @@
|
|||||||
# More info at http://revel.github.io/manual/appconf.html
|
# More info at http://revel.github.io/manual/appconf.html
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
# Sets the `AppName` variable which can be used in your code as
|
# Sets `revel.AppName` for use in-app.
|
||||||
|
# Example:
|
||||||
# `if revel.AppName {...}`
|
# `if revel.AppName {...}`
|
||||||
app.name = {{ .AppName }}
|
app.name = {{ .AppName }}
|
||||||
|
|
||||||
@@ -13,7 +14,7 @@ app.name = {{ .AppName }}
|
|||||||
# into your application
|
# into your application
|
||||||
app.secret = {{ .Secret }}
|
app.secret = {{ .Secret }}
|
||||||
|
|
||||||
# Revel running behind proxy like nginx, haproxy, etc
|
# Revel running behind proxy like nginx, haproxy, etc.
|
||||||
app.behind.proxy = false
|
app.behind.proxy = false
|
||||||
|
|
||||||
|
|
||||||
@@ -57,10 +58,11 @@ cookie.prefix = REVEL
|
|||||||
# as false.
|
# as false.
|
||||||
# cookie.secure = false
|
# cookie.secure = false
|
||||||
|
|
||||||
# Limit cookie access to a given domain
|
# Limit cookie access to a given domain.
|
||||||
#cookie.domain =
|
#cookie.domain =
|
||||||
|
|
||||||
# Define when your session cookie expires. Possible values:
|
# Define when your session cookie expires.
|
||||||
|
# Values:
|
||||||
# "720h"
|
# "720h"
|
||||||
# A time duration (http://golang.org/pkg/time/#ParseDuration) after which
|
# A time duration (http://golang.org/pkg/time/#ParseDuration) after which
|
||||||
# the cookie expires and the session is invalid.
|
# the cookie expires and the session is invalid.
|
||||||
@@ -82,7 +84,7 @@ format.datetime = 2006-01-02 15:04
|
|||||||
results.chunked = false
|
results.chunked = false
|
||||||
|
|
||||||
|
|
||||||
# Prefixes for each log message line
|
# Prefixes for each log message line.
|
||||||
# User can override these prefix values within any section
|
# User can override these prefix values within any section
|
||||||
# For e.g: [dev], [prod], etc
|
# For e.g: [dev], [prod], etc
|
||||||
log.trace.prefix = "TRACE "
|
log.trace.prefix = "TRACE "
|
||||||
@@ -107,30 +109,57 @@ module.static=github.com/revel/modules/static
|
|||||||
|
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
# Section: dev
|
# Section: dev
|
||||||
# This section is evaluated when running Revel in dev mode. Like so:
|
# This section is evaluated when running Revel in dev mode. Like so:
|
||||||
# `revel run path/to/myapp`
|
# `revel run path/to/myapp`
|
||||||
[dev]
|
[dev]
|
||||||
# This sets `DevMode` variable to `true` which can be used in your code as
|
|
||||||
|
# This sets `revel.DevMode` for use in-app.
|
||||||
|
# Example:
|
||||||
# `if revel.DevMode {...}`
|
# `if revel.DevMode {...}`
|
||||||
# or in your templates with
|
# or in your templates with
|
||||||
# `{{.DevMode}}`
|
# `{{.DevMode}}`
|
||||||
|
# Values:
|
||||||
|
# "true"
|
||||||
|
# Sets `DevMode` to `true`.
|
||||||
|
# "false"
|
||||||
|
# Sets `DevMode` to `false`.
|
||||||
mode.dev = true
|
mode.dev = true
|
||||||
|
|
||||||
|
|
||||||
# Pretty print JSON/XML when calling RenderJSON/RenderXML
|
# Pretty print JSON/XML when calling RenderJSON/RenderXML
|
||||||
|
# Values:
|
||||||
|
# "true"
|
||||||
|
# Enables pretty printing.
|
||||||
|
# "false"
|
||||||
|
# Disables pretty printing.
|
||||||
results.pretty = true
|
results.pretty = true
|
||||||
|
|
||||||
|
|
||||||
# Automatically watches your applicaton files and recompiles on-demand
|
# Watch your applicaton files for changes and automatically rebuild
|
||||||
|
# Values:
|
||||||
|
# "true"
|
||||||
|
# Enables auto rebuilding.
|
||||||
|
# "false"
|
||||||
|
# Disables auto rebuilding.
|
||||||
watch = true
|
watch = true
|
||||||
|
|
||||||
|
|
||||||
# If you set watch.mode = "eager", the server starts to recompile
|
# Define when to rebuild new changes.
|
||||||
# your application every time your application's files change.
|
# Values:
|
||||||
|
# "normal"
|
||||||
|
# Rebuild when a new request is received and changes have been detected.
|
||||||
|
# "eager"
|
||||||
|
# Rebuild as soon as changes are detected.
|
||||||
watch.mode = normal
|
watch.mode = normal
|
||||||
|
|
||||||
# Watch the entire $GOPATH for code changes. Default is false.
|
# Watch the entire `$GOPATH` for changes.
|
||||||
|
# Values:
|
||||||
|
# "true"
|
||||||
|
# Includes `$GOPATH` in watch path.
|
||||||
|
# "false"
|
||||||
|
# Excludes `$GOPATH` from watch path. Default value.
|
||||||
#watch.gopath = true
|
#watch.gopath = true
|
||||||
|
|
||||||
|
|
||||||
@@ -141,20 +170,34 @@ module.testrunner = github.com/revel/modules/testrunner
|
|||||||
|
|
||||||
|
|
||||||
# Where to log the various Revel logs
|
# Where to log the various Revel logs
|
||||||
|
# Values:
|
||||||
|
# "off"
|
||||||
|
# Disable log output.
|
||||||
|
# "stdout"
|
||||||
|
# Log to OS's standard output.
|
||||||
|
# "stderr"
|
||||||
|
# Log to Os's standard error output. Default value.
|
||||||
|
# "relative/path/to/log"
|
||||||
|
# Log to file.
|
||||||
log.trace.output = off
|
log.trace.output = off
|
||||||
log.info.output = stderr
|
log.info.output = stderr
|
||||||
log.warn.output = stderr
|
log.warn.output = stderr
|
||||||
log.error.output = stderr
|
log.error.output = stderr
|
||||||
|
|
||||||
|
|
||||||
# Revel log flags. Possible flags defined by the Go `log` package,
|
# Revel log flags. Possible flags defined by the Go `log` package. Go log is
|
||||||
# please refer https://golang.org/pkg/log/#pkg-constants
|
# "Bits OR'ed together to control what's printed
|
||||||
# Go log is "Bits or'ed together to control what's printed"
|
# See:
|
||||||
# Examples:
|
# https://golang.org/pkg/log/#pkg-constants
|
||||||
# 0 => just log the message, turn off the flags
|
# Values:
|
||||||
# 3 => log.LstdFlags (log.Ldate|log.Ltime)
|
# "0"
|
||||||
# 19 => log.Ldate|log.Ltime|log.Lshortfile
|
# Just log the message, turn off the flags.
|
||||||
# 23 => log.Ldate|log.Ltime|log.Lmicroseconds|log.Lshortfile
|
# "3"
|
||||||
|
# log.LstdFlags (log.Ldate|log.Ltime)
|
||||||
|
# "19"
|
||||||
|
# log.Ldate|log.Ltime|log.Lshortfile
|
||||||
|
# "23"
|
||||||
|
# log.Ldate|log.Ltime|log.Lmicroseconds|log.Lshortfile
|
||||||
log.trace.flags = 19
|
log.trace.flags = 19
|
||||||
log.info.flags = 19
|
log.info.flags = 19
|
||||||
log.warn.flags = 19
|
log.warn.flags = 19
|
||||||
@@ -169,6 +212,7 @@ log.error.flags = 19
|
|||||||
log.request.output = stderr
|
log.request.output = stderr
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# Section: prod
|
# Section: prod
|
||||||
# This section is evaluated when running Revel in production mode. Like so:
|
# This section is evaluated when running Revel in production mode. Like so:
|
||||||
@@ -176,18 +220,15 @@ log.request.output = stderr
|
|||||||
# See:
|
# See:
|
||||||
# [dev] section for documentation of the various settings
|
# [dev] section for documentation of the various settings
|
||||||
[prod]
|
[prod]
|
||||||
mode.dev = false
|
|
||||||
|
|
||||||
|
mode.dev = false
|
||||||
|
|
||||||
results.pretty = false
|
results.pretty = false
|
||||||
|
|
||||||
|
|
||||||
watch = false
|
watch = false
|
||||||
|
|
||||||
|
|
||||||
module.testrunner =
|
module.testrunner =
|
||||||
|
|
||||||
|
|
||||||
log.trace.output = off
|
log.trace.output = off
|
||||||
log.info.output = off
|
log.info.output = off
|
||||||
log.warn.output = log/%(app.name)s.log
|
log.warn.output = log/%(app.name)s.log
|
||||||
|
|||||||
Reference in New Issue
Block a user