Browse Source

Merge branch 'master' of https://github.com/tracim/tracim

root 10 years ago
parent
commit
f828d10031
2 changed files with 7 additions and 3 deletions
  1. 2 0
      README.md
  2. 5 3
      tracim/app.wsgi

+ 2 - 0
README.md View File

@@ -16,6 +16,8 @@ All data offers:
16 16
 - native versionning
17 17
 - comment threads making tracim knowledge-growth ready.
18 18
 
19
+Join Tracim community : http://tracim.org
20
+
19 21
 ## Use-cases ##
20 22
 
21 23
 ### Collaborate with clients ###

+ 5 - 3
tracim/app.wsgi View File

@@ -1,11 +1,13 @@
1
-APP_CONFIG = "/home/daccorsi/sources/pod/pod/development.ini"
1
+# -*- coding: utf-8 -*-
2
+
3
+APP_CONFIG = "/opt/traciminstallpath/development.ini"
2 4
 
3 5
 #Setup logging
4
-import logging
6
+# import logging
5 7
 # logging.config.fileConfig(APP_CONFIG)
6 8
 
7 9
 #Load the application
8 10
 from paste.deploy import loadapp
9 11
 application = loadapp('config:%s' % APP_CONFIG)
10
-application.debug = True
12
+application.debug = False
11 13