Bläddra i källkod

Merge branch '77/dev/beta_1.0/docker'

Bastien Sevajol 7 år sedan
förälder
incheckning
576fbdef7c
2 ändrade filer med 5 tillägg och 3 borttagningar
  1. 2 0
      README.md
  2. 3 3
      tracim/test.ini

+ 2 - 0
README.md Visa fil

@@ -115,6 +115,8 @@ You'll need to install the following packages on your Operating System:
115 115
 
116 116
     apt-get install git realpath python3 python-virtualenv python3-dev python-pip build-essential libxml2-dev libxslt1-dev python-lxml
117 117
 
118
+You also need `redis-server` package if you want to send email in async mode.
119
+
118 120
 ## Database ##
119 121
 
120 122
 If you want use PostgreSQL as database engine:

+ 3 - 3
tracim/test.ini Visa fil

@@ -22,7 +22,7 @@ host = 127.0.0.1
22 22
 port = 8080
23 23
 
24 24
 [app:main]
25
-sqlalchemy.url = sqlite:///tracim_test.sqlite
25
+sqlalchemy.url =  postgresql://postgres:dummy@127.0.0.1:5432/tracim_test?client_encoding=utf8
26 26
 use = config:development.ini
27 27
 
28 28
 [app:main_without_authn]
@@ -30,7 +30,7 @@ use = main
30 30
 skip_authentication = True
31 31
 
32 32
 [app:ldap]
33
-sqlalchemy.url = sqlite:///tracim_test.sqlite
33
+sqlalchemy.url =  postgresql://postgres:dummy@127.0.0.1:5432/tracim_test?client_encoding=utf8
34 34
 auth_type = ldap
35 35
 ldap_url = ldap://localhost:3333
36 36
 ldap_base_dn = dc=directory,dc=fsf,dc=org
@@ -49,7 +49,7 @@ resetpassword.smtp_passwd =  fake
49 49
 use = config:development.ini
50 50
 
51 51
 [app:radicale]
52
-sqlalchemy.url = sqlite:///tracim_test.sqlite
52
+sqlalchemy.url =  postgresql://postgres:dummy@127.0.0.1:5432/tracim_test?client_encoding=utf8
53 53
 
54 54
 use = config:development.ini
55 55