README 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. Tryton is a complete ERP. The main features are accounting (analytic
  2. and financial), stock management, sales and purchases management,
  3. POS, etc. Technical features include a distributed server, flexible
  4. workflows, an object database, a dynamic GUI, customizable reports, and
  5. SOAP and XML-RPC interfaces.
  6. Optional dependency: Sphinx (autodetected). Required for building the
  7. HTML documentation (/usr/doc/trytond-*/html/).
  8. To add modules, you will need pip.
  9. Before you can use the tryton server, you will have to set up
  10. postgresql. All you have to do is issue the following command:
  11. createuser -U postgres --createdb --no-adduser tryton
  12. This will setup trytond for use with postgresql on localhost. There is
  13. no need to set a password on localhost. However, if you are going to
  14. run postgresql on a different server, you will have to run createuser
  15. like this:
  16. createuser -U postgres --createdb --no-adduser -P tryton
  17. After initializing postgres, modify /etc/trytond/trytond.conf to match
  18. your local setup. After trytond is setup, then you can run
  19. /etc/rc.d/rc.trytond start
  20. If you want to install the documentation, optional dependency is Sphinx
  21. documentation program (development/Sphinx).
  22. For a list of modules that can be added to trytond, at cli type:
  23. pip search trytond
  24. then to add module, type:
  25. pip install trytond_module_name
  26. where trydond_module_name is the name of the module. For example, to
  27. add the account package, type:
  28. pip install trytond_account