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
9 # Usuario con el cual ejecutar cuando no se necesitan privilegios
10 #sercom.tester.user = 65534 # usualmente 'nobody'
12 # Máxima cantidad de tiempo de CPU que puede estar ejecutandose el comando
14 #sercom.tester.limits.max_tiempo_cpu = 120
16 # Máxima cantidad de memoria que puede ocupar el comando (en MiB)
17 #sercom.tester.limits.max_memoria = 16
19 # Máximo tamaño de archivo que puede manejar el comando (en MiB)
20 #sercom.tester.limits.max_tam_archivo = 5
22 # Máxima cantidad de archivo simultáneos que puede tener abierto el comando
23 #sercom.tester.limits.max_cant_archivos = 5
25 # Máxima cantidad de subprocesos que puede crear el pcomando
26 #sercom.tester.limits.max_cant_procesos = 0
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
32 # Usuario con el cual ejecutar comandos
33 #sercom.tester.chroot.user = 65534 # usualmente 'nobody'
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"
43 # If you have sqlite, here's a simple default to get you started
45 sqlobject.dburi="sqlite://%(current_dir_uri)s/devdata.sqlite"
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"
53 # for Windows users, sqlite URIs look like:
54 # sqlobject.dburi="sqlite:///drive_letter:/path/to/file"
58 # Some server parameters that you may want to tweak
59 # server.socket_port=8080
61 # Enable the debug output at the end on pages.
62 # log_debug_info_filter.on = False
64 server.environment="development"
65 autoreload.package="sercom"
67 # session_filter.on = True
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
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
84 handlers=['debug_out']
88 handlers=['debug_out']
92 qualname='turbogears.access'
93 handlers=['access_out']