~jfb-tempo-consulting/unifield-wm/sync-env-py3

« back to all changes in this revision

Viewing changes to config.py

  • Committer: Samus CTO
  • Date: 2012-08-28 12:38:31 UTC
  • Revision ID: cto@openerp.com-20120828123831-9dhavvjktnrl2p8d
[INIT]

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
 
 
3
## Postgres admin password
 
4
db_password = 'admin'
 
5
## admin password
 
6
admin_password = 'admin'
 
7
## User login & password
 
8
user_login = 'cto'
 
9
user_password = 'cto'
 
10
 
 
11
## Infos to connect to server (sync client side)
 
12
client_host = 'localhost' #'10.42.43.1'
 
13
client_port = 8069
 
14
 
 
15
## Infos to connect to server (sync server side)
 
16
server_host = 'localhost' #'10.42.43.1'
 
17
server_port = 8069
 
18
 
 
19
## Other stuffs
 
20
default_email = 'cto@openerp.com'
 
21
company_name = 'Médecins Sans Frontières'
 
22
currency = 'base.EUR'
 
23