]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - doc/config-examples/dev.cfg
6dfe490eabe985274e0335d15221d023f7d8d415
[z.facultad/75.52/sercom.git] / doc / config-examples / dev.cfg
1 [global]
2 # This is where all of your settings go for your development environment
3 # Settings that are the same for both development and production
4 # (such as template engine, encodings, etc.) all go in 
5 # sercom/config/app.cfg
6
7 # SERCOM
8
9 # Usuario con el cual ejecutar cuando no se necesitan privilegios
10 #sercom.tester.user = 65534 # usualmente 'nobody'
11
12 # Grupo con el cual ejecutar cuando no se necesitan privilegios
13 #sercom.tester.group = 65534 # usualmente 'nogroup'
14
15 # Máxima cantidad de tiempo de CPU que puede estar ejecutandose el comando
16 # (en segundos)
17 #sercom.tester.limits.max_tiempo_cpu = 120
18
19 # Máxima cantidad de memoria que puede ocupar el comando (en MiB)
20 #sercom.tester.limits.max_memoria = 16
21
22 # Máximo tamaño de archivo que puede manejar el comando (en MiB)
23 #sercom.tester.limits.max_tam_archivo = 5
24
25 # Máxima cantidad de archivo simultáneos que puede tener abierto el comando
26 #sercom.tester.limits.max_cant_archivos = 5
27
28 # Máxima cantidad de subprocesos que puede crear el pcomando
29 #sercom.tester.limits.max_cant_procesos = 0
30
31 # Máxima cantidad de locks de memoria (memoria que no puede ser swappeada)
32 # que puede solicitar el comando
33 #sercom.tester.limits.max_locks_memoria = 0
34
35 # Usuario con el cual ejecutar comandos
36 #sercom.tester.chroot.user = 65534 # usualmente 'nobody'
37
38 # Grupo con el cual ejecutar comandos
39 #sercom.tester.chroot.group = 65534 # usualmente 'nogroup'
40
41
42 # DATABASE
43
44 # pick the form for your database
45 # sqlobject.dburi="postgres://username@hostname/databasename"
46 # sqlobject.dburi="mysql://username:password@hostname:port/databasename"
47 # sqlobject.dburi="sqlite:///file_name_and_path"
48
49 # If you have sqlite, here's a simple default to get you started
50 # in development
51 sqlobject.dburi="sqlite://%(current_dir_uri)s/devdata.sqlite"
52
53
54 # if you are using a database or table type without transactions
55 # (MySQL default, for example), you should turn off transactions
56 # by prepending notrans_ on the uri
57 # sqlobject.dburi="notrans_mysql://username:password@hostname:port/databasename"
58
59 # for Windows users, sqlite URIs look like:
60 # sqlobject.dburi="sqlite:///drive_letter:/path/to/file"
61
62 # SERVER
63
64 # Some server parameters that you may want to tweak
65 # server.socket_port=8080
66
67 # Enable the debug output at the end on pages.
68 # log_debug_info_filter.on = False
69
70 server.environment="development"
71 autoreload.package="sercom"
72
73 # session_filter.on = True
74
75 # Set to True if you'd like to abort execution if a controller gets an
76 # unexpected parameter. False by default
77 tg.strict_parameters = True
78
79 # LOGGING
80 # Logging configuration generally follows the style of the standard
81 # Python logging module configuration. Note that when specifying
82 # log format messages, you need to use *() for formatting variables.
83 # Deployment independent log configuration is in sercom/config/log.cfg
84 [logging]
85
86 [[loggers]]
87 [[[sercom]]]
88 level='DEBUG'
89 qualname='sercom'
90 handlers=['debug_out']
91
92 [[[allinfo]]]
93 level='INFO'
94 handlers=['debug_out']
95
96 [[[access]]]
97 level='INFO'
98 qualname='turbogears.access'
99 handlers=['access_out']
100 propagate=0