diff options
author | B. Watson <yalhcru@gmail.com> | 2020-10-12 17:08:06 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2020-10-17 09:38:08 +0700 |
commit | 531abd87b7cae9e0f9ae62401534719dda413459 (patch) | |
tree | 76df91293dbb28777c984a72ac7a9e78072d8e72 /business | |
parent | 8d288645195369a4a861d225a7e24be54bff322f (diff) |
business/trytond: Fix README.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'business')
-rw-r--r-- | business/trytond/README | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/business/trytond/README b/business/trytond/README index e62ca86b5570..c1eec1fa35dd 100644 --- a/business/trytond/README +++ b/business/trytond/README @@ -1,22 +1,23 @@ -Tryton is a complete ERP. The main features are accounting -(analytic and financial), stock management, sales and purchases management, -POS, etc. Technical features include a distributed server, flexible workflows, -an object database, a dynamic GUI, customizable reports, and SOAP and XML-RPC -interfaces. +Tryton is a complete ERP. The main features are accounting (analytic +and financial), stock management, sales and purchases management, +POS, etc. Technical features include a distributed server, flexible +workflows, an object database, a dynamic GUI, customizable reports, and +SOAP and XML-RPC interfaces. To add modules, you will need pip. -Before you can use the tryton server, you will have to set up postgresql. All -you have to do is issue the following command: +Before you can use the tryton server, you will have to set up +postgresql. All you have to do is issue the following command: createuser -U postgres --createdb --no-adduser tryton This will setup trytond for 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: +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: createuser -U postgres --createdb --no-adduser -P tryton -After initializing postgres, modify /etc/trytond/trytond.conf to match your -local setup. After trytond is setup, then you can run +After initializing postgres, modify /etc/trytond/trytond.conf to match +your local setup. After trytond is setup, then you can run /etc/rc.d/rc.trytond start If you want to install the documentation, optional dependency is Sphinx @@ -28,6 +29,6 @@ For a list of modules that can be added to trytond, at cli type: then to add module, type: pip install trytond_module_name -where trydond_module_name is the name of the module. For example, to add -the account package, type: +where trydond_module_name is the name of the module. For example, to +add the account package, type: pip install trytond_account |