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