Browse Source

Merge branch 'master' of https://bitbucket.org/lebouquetin/pod

root 10 years ago
parent
commit
ff60c4306e
1 changed files with 13 additions and 0 deletions
  1. 13 0
      README.md

+ 13 - 0
README.md View File

@@ -147,11 +147,24 @@ Notes:
147 147
 
148 148
     cp pod/development.ini.base pod/development.ini
149 149
 
150
+#### Database 
151
+
150 152
 Configure database in the development.ini file. This is defined as sqlalchemy.url
151 153
 and the default value is below:
152 154
 
153 155
     sqlalchemy.url = postgresql://pod_user:pod_user_password@127.0.0.1:5432/pod
154 156
 
157
+#### Listening port
158
+
159
+Default configuration is to listen on port 8080. If you want to adapt this to your environment, edit the .ini file and setup the port you want:
160
+
161
+    port = 8080
162
+
163
+#### Interface language
164
+
165
+The default language is English. You can change it to french by uncommenting the following line in the .ini file:
166
+
167
+    lang = fr_FR
155 168
 
156 169
     
157 170
 ### Running Pod as standalone ###