README 1.3 KB

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