ソースを参照

add known issues doc for backend

Guénaël Muller 6 年 前
コミット
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
+