summaryrefslogtreecommitdiffstats
path: root/business/trytond/README
diff options
context:
space:
mode:
author Ken Roberts <alisonken1@juno.com>2014-04-12 15:45:56 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2014-04-12 15:45:56 +0700
commit7338622eabd0aceb08825d3a70cd3ca2cd649e87 (patch)
treeb78edb58865e2b9dc1e5bef15eee042b1568004a /business/trytond/README
parent09d7ae6e029fa66f3d27223f23659812a7f0dbc8 (diff)
downloadslackbuilds-7338622eabd0aceb08825d3a70cd3ca2cd649e87.tar.gz
slackbuilds-7338622eabd0aceb08825d3a70cd3ca2cd649e87.tar.xz
business/trytond: Added (ERP -server part).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'business/trytond/README')
-rw-r--r--business/trytond/README33
1 files changed, 33 insertions, 0 deletions
diff --git a/business/trytond/README b/business/trytond/README
new file mode 100644
index 0000000000..e62ca86b55
--- /dev/null
+++ b/business/trytond/README
@@ -0,0 +1,33 @@
+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:
+ 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:
+ 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
+ /etc/rc.d/rc.trytond start
+
+If you want to install the documentation, optional dependency is Sphinx
+documentation program (development/Sphinx).
+
+For a list of modules that can be added to trytond, at cli type:
+ pip search trytond
+
+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:
+ pip install trytond_account