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
 - native versionning
16
 - native versionning
17
 - comment threads making tracim knowledge-growth ready.
17
 - comment threads making tracim knowledge-growth ready.
18
 
18
 
19
+Join Tracim community : http://tracim.org
20
+
19
 ## Use-cases ##
21
 ## Use-cases ##
20
 
22
 
21
 ### Collaborate with clients ###
23
 ### Collaborate with clients ###

+ 5 - 3
tracim/app.wsgi View File

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
 #Setup logging
5
 #Setup logging
4
-import logging
6
+# import logging
5
 # logging.config.fileConfig(APP_CONFIG)
7
 # logging.config.fileConfig(APP_CONFIG)
6
 
8
 
7
 #Load the application
9
 #Load the application
8
 from paste.deploy import loadapp
10
 from paste.deploy import loadapp
9
 application = loadapp('config:%s' % APP_CONFIG)
11
 application = loadapp('config:%s' % APP_CONFIG)
10
-application.debug = True
12
+application.debug = False
11
 
13