##// END OF EJS Templates
ini: set 'debug' only in one place...
Thomas De Schampheleire -
r6526:fc6b1b0e default
parent child Browse files
Show More
@@ -4,7 +4,7 b''
4 4 # listening on *:5000 #
5 5 # sqlite and kallithea.db #
6 6 # initial_repo_scan = true #
7 # set debug = true #
7 # debug = true #
8 8 # verbose and colorful logging #
9 9 # #
10 10 # The %(here)s variable will be replaced with the parent directory of this file#
@@ -12,7 +12,6 b''
12 12 ################################################################################
13 13
14 14 [DEFAULT]
15 debug = true
16 15
17 16 ################################################################################
18 17 ## Email settings ##
@@ -466,12 +465,12 b' sentry.include_paths ='
466 465 sentry.exclude_paths =
467 466
468 467 ################################################################################
469 ## WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT* ##
468 ## WARNING: *DEBUG MODE MUST BE OFF IN A PRODUCTION ENVIRONMENT* ##
470 469 ## Debug mode will enable the interactive debugging tool, allowing ANYONE to ##
471 470 ## execute malicious code after an exception is raised. ##
472 471 ################################################################################
473 #set debug = false
474 set debug = true
472 #debug = false
473 debug = true
475 474
476 475 ##################################
477 476 ### LOGVIEW CONFIG ###
@@ -6,7 +6,6 b''
6 6 <%text>################################################################################</%text>
7 7
8 8 [DEFAULT]
9 debug = true
10 9
11 10 <%text>################################################################################</%text>
12 11 <%text>## Email settings ##</%text>
@@ -467,11 +466,11 b' sentry.exclude_paths ='
467 466
468 467 %endif
469 468 <%text>################################################################################</%text>
470 <%text>## WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT* ##</%text>
469 <%text>## WARNING: *DEBUG MODE MUST BE OFF IN A PRODUCTION ENVIRONMENT* ##</%text>
471 470 <%text>## Debug mode will enable the interactive debugging tool, allowing ANYONE to ##</%text>
472 471 <%text>## execute malicious code after an exception is raised. ##</%text>
473 472 <%text>################################################################################</%text>
474 set debug = false
473 debug = false
475 474
476 475 <%text>##################################</%text>
477 476 <%text>### LOGVIEW CONFIG ###</%text>
@@ -10,7 +10,6 b''
10 10 ################################################################################
11 11
12 12 [DEFAULT]
13 debug = true
14 13
15 14 ################################################################################
16 15 ## Email settings ##
@@ -471,11 +470,11 b' sentry.include_paths ='
471 470 sentry.exclude_paths =
472 471
473 472 ################################################################################
474 ## WARNING: *THE LINE BELOW MUST BE UNCOMMENTED ON A PRODUCTION ENVIRONMENT* ##
473 ## WARNING: *DEBUG MODE MUST BE OFF IN A PRODUCTION ENVIRONMENT* ##
475 474 ## Debug mode will enable the interactive debugging tool, allowing ANYONE to ##
476 475 ## execute malicious code after an exception is raised. ##
477 476 ################################################################################
478 set debug = false
477 debug = false
479 478
480 479 ##################################
481 480 ### LOGVIEW CONFIG ###
@@ -72,7 +72,7 b' ini_files = ['
72 72 listening on *:5000
73 73 sqlite and kallithea.db
74 74 initial_repo_scan = true
75 set debug = true
75 debug = true
76 76 verbose and colorful logging
77 77
78 78 The %(here)s variable will be replaced with the parent directory of this file
@@ -83,7 +83,7 b' ini_files = ['
83 83 },
84 84 '[app:main]': {
85 85 'initial_repo_scan': 'true',
86 'set debug': 'true',
86 'debug': 'true',
87 87 'app_instance_uuid': 'development-not-secret',
88 88 'beaker.session.secret': 'development-not-secret',
89 89 },
General Comments 0
You need to be logged in to leave comments. Login now