Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / production.ini @ 51ede5e8

History | View | Annotate | Download (3.42 KB)

1
#
2
# vigiboard - Pylons development environment configuration
3
#
4
# The %(here)s variable will be replaced with the parent directory of this file
5
#
6
# This file is for deployment specific config options -- other configuration
7
# that is always required for the app is done in the config directory, 
8
# and generally should not be modified by end users. 
9

    
10
[DEFAULT]
11
debug = false
12
# Uncomment and replace with the address which should receive any error reports
13
#email_to = you@yourdomain.com
14
smtp_server = localhost
15
error_email_from = paste@localhost
16

    
17
[server:main]
18
use = egg:Paste#http
19
host = 127.0.0.1 
20

    
21
[app:main]
22
use = egg:vigiboard
23
appname = vigiboard
24
full_stack = true
25
#lang = fr
26
cache_dir = %(here)s/data
27
beaker.session.key = vigiboard
28
beaker.session.secret = somesecret
29

    
30
# If you'd like to fine-tune the individual locations of the cache data dirs
31
# for the Cache data, or the Session saves, un-comment the desired settings
32
# here:
33
#beaker.cache.data_dir = %(here)s/data/cache
34
#beaker.session.data_dir = %(here)s/data/sessions
35

    
36
# DB
37
#sqlalchemy.url=mysql://root:tandreja@localhost:3306/vigiboard
38
#echo shouldn't be used together with the logging module.
39
sqlalchemy.echo = false
40
sqlalchemy.echo_pool = false
41
sqlalchemy.pool_recycle = 3600
42
sqlalchemy.url=postgres://vigiboard:vigiboard@localhost/vigiboard
43

    
44
 
45
base_url_filter.base_url=/vigiboard
46
# if you are using Mako and want to be able to reload
47
# the mako template from disk during the development phase
48
# you should say 'true' here
49
# This option is only used for mako templating engine
50
# WARNING: if you want to deploy your application using a zipped egg
51
# (ie: if your application's setup.py defines zip-safe=True, then you
52
# MUST put "false" for the production environment because there will
53
# be no disk and real files to compare time with.
54
# On the contrary if your application defines zip-safe=False and is
55
# deployed in an unzipped manner, then you can leave this option to true
56
templating.mako.reloadfromdisk = true
57

    
58
# the compiled template dir is a directory that must be readable by your
59
# webserver. It will be used to store the resulting templates once compiled
60
# by the TemplateLookup system.
61
# During development you generally don't need this option since paste's HTTP
62
# server will have access to you development directories, but in production
63
# you'll most certainly want to have apache or nginx to write in a directory
64
# that does not contain any source code in any form for obvious security reasons.
65
#
66
#templating.mako.compiled_templates_dir = /some/dir/where/webserver/has/access
67

    
68
# WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT*
69
# Debug mode will enable the interactive debugging tool, allowing ANYONE to
70
# execute malicious code after an exception is raised.
71
set debug = false
72

    
73
# Logging configuration
74
# Add additional loggers, handlers, formatters here
75
# Uses python's logging config file format
76
# http://docs.python.org/lib/logging-config-fileformat.html
77

    
78
[loggers]
79
keys = root
80

    
81
[handlers]
82
keys = console
83

    
84
[formatters]
85
keys = generic
86

    
87
# If you create additional loggers, add them as a key to [loggers]
88
[logger_root]
89
level = WARN
90
handlers = console
91

    
92
# If you create additional handlers, add them as a key to [handlers]
93

    
94
[handler_console]
95
class = StreamHandler
96
args = (sys.stderr,)
97
level = NOTSET
98
formatter = generic
99

    
100
# If you create additional formatters, add them as a key to [formatters]
101
[formatter_generic]
102
format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
103
datefmt = %H:%M:%S