Merge "Add INFO.yaml"
[iec.git] / src / foundation / api / revel / testdata / conf / app.conf
1 # Application
2 app.name=Booking example
3 app.secret=secret
4
5 # Server
6 http.addr=
7 http.port=9000
8 http.ssl=false
9 http.sslcert=
10 http.sslkey=
11
12 # Logging
13 log.trace.output = stderr
14 log.info.output  = stderr
15 log.warn.output  = stderr
16 log.error.output = stderr
17
18 log.trace.prefix = "TRACE "
19 log.info.prefix  = "INFO  "
20 log.warn.prefix  = "WARN  "
21 log.error.prefix = "ERROR "
22
23 db.import = github.com/mattn/go-sqlite3
24 db.driver = sqlite3
25 db.spec   = :memory:
26
27 build.tags=gorp
28
29 # module.jobs=github.com/revel/modules/jobs
30 module.static=github.com/revel/modules/static
31
32 [dev]
33 mode.dev=true
34 watch=true
35 module.testrunner=github.com/revel/modules/testrunner
36
37 [prod]
38 watch=false
39 module.testrunner=
40
41 log.trace.output = off
42 log.info.output  = off
43 log.warn.output  = stderr
44 log.error.output = stderr