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 # Grupo con el cual ejecutar cuando no se necesitan privilegios
13 #sercom.tester.group = 65534 # usualmente 'nogroup'
15 # Máxima cantidad de tiempo de CPU que puede estar ejecutandose el comando
17 #sercom.tester.limits.max_tiempo_cpu = 120
19 # Máxima cantidad de memoria que puede ocupar el comando (en MiB)
20 #sercom.tester.limits.max_memoria = 16
22 # Máximo tamaño de archivo que puede manejar el comando (en MiB)
23 #sercom.tester.limits.max_tam_archivo = 5
25 # Máxima cantidad de archivo simultáneos que puede tener abierto el comando
26 #sercom.tester.limits.max_cant_archivos = 5
28 # Máxima cantidad de subprocesos que puede crear el pcomando
29 #sercom.tester.limits.max_cant_procesos = 0
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
35 # Usuario con el cual ejecutar comandos
36 #sercom.tester.chroot.user = 65534 # usualmente 'nobody'
38 # Grupo con el cual ejecutar comandos
39 #sercom.tester.chroot.group = 65534 # usualmente 'nogroup'
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"
49 # If you have sqlite, here's a simple default to get you started
51 sqlobject.dburi="sqlite://%(current_dir_uri)s/devdata.sqlite"
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"
59 # for Windows users, sqlite URIs look like:
60 # sqlobject.dburi="sqlite:///drive_letter:/path/to/file"
64 # Some server parameters that you may want to tweak
65 # server.socket_port=8080
67 # Enable the debug output at the end on pages.
68 # log_debug_info_filter.on = False
70 server.environment="development"
71 autoreload.package="sercom"
73 # session_filter.on = True
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
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
90 handlers=['debug_out']
94 handlers=['debug_out']
98 qualname='turbogears.access'
99 handlers=['access_out']