瀏覽代碼

add known issues doc for backend

Guénaël Muller 7 年之前
父節點
當前提交
82e475dcda
共有 2 個文件被更改,包括 28 次插入1 次删除
  1. 5 1
      backend/README.md
  2. 23 0
      backend/doc/known_issues.md

+ 5 - 1
backend/README.md 查看文件

201
 
201
 
202
 In Tracim, only some user can access to some informations, this is also true in
202
 In Tracim, only some user can access to some informations, this is also true in
203
 Tracim REST API. you can check the [roles documentation](doc/roles.md) to check
203
 Tracim REST API. you can check the [roles documentation](doc/roles.md) to check
204
-what a specific user can do.
204
+what a specific user can do.
205
+
206
+# Known issues
207
+
208
+see [here](doc/known_issues.md)

+ 23 - 0
backend/doc/known_issues.md 查看文件

1
+# Known issue with Tracim Backend
2
+
3
+## Uwsgi
4
+
5
+### plaster.exceptions.LoaderNotFound
6
+
7
+If you obtain error with :
8
+
9
+
10
+    plaster.exceptions.LoaderNotFound: Could not find a matching loader for the scheme "file+ini"".
11
+
12
+
13
+you most probably don't set correctly TRACIM_CONF_PATH or TRACIM_WEBDAV_CONF_PATH.
14
+You have to set a correct absolute path.
15
+be careful for uwsgi ini file :
16
+
17
+
18
+    # incorrect
19
+    env = TRACIM_CONF_PATH="/home/me/tracim_v2/backend/development.ini"
20
+
21
+    # correct
22
+    env = TRACIM_CONF_PATH=/home/me/tracim_v2/backend/development.ini
23
+