2010-05-13 00:57:33 +02:00
|
|
|
OpenERP is a complete ERP and CRM. The main features are accounting
|
2020-10-12 23:06:01 +02:00
|
|
|
(analytic and financial), stock management, sales and purchases
|
|
|
|
management, tasks automation, marketing campaigns, help desk,
|
|
|
|
POS, etc. Technical features include a distributed server, flexible
|
|
|
|
workflows, an object database, a dynamic GUI, customizable reports, and
|
|
|
|
SOAP and XML-RPC interfaces.
|
2010-05-13 00:57:33 +02:00
|
|
|
|
2020-10-12 23:06:01 +02:00
|
|
|
Before you can use openerp-server, you will have to set up
|
|
|
|
postgresql. All you have to do is issue the following command:
|
2010-05-13 00:57:33 +02:00
|
|
|
createuser -U postgres --no-adduser terp
|
|
|
|
|
2020-10-12 23:06:01 +02:00
|
|
|
This will setup OpenERP for the use with postgresql on localhost.
|
|
|
|
There is no need to set a password on localhost. However, if you are
|
|
|
|
going to run postgresql on a different server, you will have to run
|
|
|
|
createuser like this:
|
2010-05-13 00:57:33 +02:00
|
|
|
createuser -U postgres --no-adduser -P terp
|