Show More
@@ -1,116 +1,116 b'' | |||
|
1 | 1 | ######################################################################## |
|
2 | 2 | ## |
|
3 | 3 | ## pylons_app - Pylons development environment configuration |
|
4 | 4 | ## |
|
5 | 5 | ## The %(here)s variable will be replaced with the parent directory of this file |
|
6 | 6 | ## |
|
7 | 7 | [DEFAULT] |
|
8 | 8 | debug = true |
|
9 | 9 | ## Uncomment and replace with the address which should receive any error reports |
|
10 | 10 | email_to = marcin.kuzminski@etelko.pl |
|
11 | 11 | smtp_server = localhost |
|
12 | 12 | error_email_from = paste_error@localhost |
|
13 | 13 | |
|
14 | 14 | [server:main] |
|
15 | 15 | use = egg:Paste#http |
|
16 | 16 | host = 127.0.0.1 |
|
17 |
port = |
|
|
17 | port = 8001 | |
|
18 | 18 | |
|
19 | 19 | [app:main] |
|
20 | 20 | use = egg:pylons_app |
|
21 | 21 | full_stack = true |
|
22 | 22 | static_files = false |
|
23 | 23 | ##default lang |
|
24 | 24 | lang=en |
|
25 | 25 | |
|
26 | 26 | cache_dir = %(here)s/data |
|
27 | 27 | beaker.session.key = pylons_app |
|
28 | 28 | beaker.session.secret = #@^^F&VWUDCT%@$#WR^@&*IWEKF |
|
29 | 29 | beaker.session.timeout = 3600 |
|
30 | 30 | |
|
31 | 31 | ##auto save the session to not to use .save() |
|
32 | 32 | beaker.session.auto = True |
|
33 | 33 | |
|
34 | 34 | ##true exire at browser close |
|
35 | 35 | #beaker.session.cookie_expires = 3600 |
|
36 | 36 | |
|
37 | 37 | ## If you'd like to fine-tune the individual locations of the cache data dirs |
|
38 | 38 | ## for the Cache data, or the Session saves, un-comment the desired settings |
|
39 | 39 | ## here: |
|
40 | 40 | #beaker.cache.data_dir = %(here)s/data/cache |
|
41 | 41 | #beaker.session.data_dir = %(here)s/data/sessions |
|
42 | 42 | |
|
43 | 43 | |
|
44 | 44 | ##Type of storage used for the session, current types are |
|
45 | 45 | ##βdbmβ, βfileβ, βmemcachedβ, βdatabaseβ, and βmemoryβ. |
|
46 | 46 | ##The storage uses the Container API that is also used by the cache system. |
|
47 | 47 | beaker.session.type = memory |
|
48 | 48 | |
|
49 | 49 | ##if db or memcached is used |
|
50 | 50 | ##you have to use |
|
51 | 51 | #beaker.session.url = |
|
52 | 52 | #beaker.session.table_name = |
|
53 | 53 | |
|
54 | 54 | ## WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT* |
|
55 | 55 | ## Debug mode will enable the interactive debugging tool, allowing ANYONE to |
|
56 | 56 | ## execute malicious code after an exception is raised. |
|
57 | 57 | #set debug = false |
|
58 | 58 | |
|
59 | 59 | ##dozer logging |
|
60 | 60 | #logview.sqlalchemy = #faa |
|
61 | 61 | #logview.pylons.templating = #bfb |
|
62 | 62 | #logview.sample_app.lib = #aaa |
|
63 | 63 | |
|
64 | 64 | # Logging configuration |
|
65 | 65 | [loggers] |
|
66 | 66 | keys = root, routes, pylons_app, sqlalchemy |
|
67 | 67 | |
|
68 | 68 | [handlers] |
|
69 | 69 | keys = console,file_handler |
|
70 | 70 | |
|
71 | 71 | [formatters] |
|
72 | 72 | keys = generic |
|
73 | 73 | |
|
74 | 74 | ## LOGGERS ## |
|
75 | 75 | [logger_root] |
|
76 | 76 | level = DEBUG |
|
77 | 77 | handlers = file_handler |
|
78 | 78 | |
|
79 | 79 | [logger_routes] |
|
80 | 80 | level = INFO |
|
81 | 81 | handlers = console |
|
82 | 82 | qualname = routes.middleware |
|
83 | 83 | # "level = DEBUG" logs the route matched and routing variables. |
|
84 | 84 | |
|
85 | 85 | [logger_pylons_app] |
|
86 | 86 | level = DEBUG |
|
87 | 87 | handlers = file_handler |
|
88 | 88 | qualname = pylons_app |
|
89 | 89 | |
|
90 | 90 | [logger_sqlalchemy] |
|
91 | 91 | level = DEBUG |
|
92 | 92 | handlers = |
|
93 | 93 | qualname = sqlalchemy.pool |
|
94 | 94 | propagate = 0 |
|
95 | 95 | |
|
96 | 96 | |
|
97 | 97 | ## HANDLERS ## |
|
98 | 98 | |
|
99 | 99 | [handler_console] |
|
100 | 100 | class = StreamHandler |
|
101 | 101 | args = (sys.stderr,) |
|
102 | 102 | level = NOTSET |
|
103 | 103 | formatter = generic |
|
104 | 104 | |
|
105 | 105 | [handler_file_handler] |
|
106 | 106 | class = FileHandler |
|
107 | 107 | args = ('./pylons_app.log','a') |
|
108 | 108 | level = NOTSET |
|
109 | 109 | formatter = generic |
|
110 | 110 | |
|
111 | 111 | ## FORMATTERS ## |
|
112 | 112 | |
|
113 | 113 | [formatter_generic] |
|
114 | 114 | format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s |
|
115 | 115 | datefmt = %H:%M:%S |
|
116 | 116 |
General Comments 0
You need to be logged in to leave comments.
Login now