You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
4.3 KiB

  1. =========================
  2. MuK Binary Stream Support
  3. =========================
  4. This module adds a new http route which allows to download binary data as a stream.
  5. This is especially useful for large files, because they don't fit in the ram as a
  6. whole and can easily cause an error because ram limits are exceeded. This module
  7. serves as a basis for a number of extensions that add fields to Odoo which support
  8. this functionality.
  9. Installation
  10. ============
  11. To install this module, you need to:
  12. Download the module and add it to your Odoo addons folder. Afterward, log on to
  13. your Odoo server and go to the Apps menu. Trigger the debug mode and update the
  14. list by clicking on the "Update Apps List" link. Now install the module by
  15. clicking on the install button.
  16. Another way to install this module is via the package management for Python
  17. (`PyPI <https://pypi.org/project/pip/>`_).
  18. To install our modules using the package manager make sure
  19. `odoo-autodiscover <https://pypi.org/project/odoo-autodiscover/>`_ is installed
  20. correctly. Note that for Odoo version 11.0 and later this is not necessary anymore.
  21. Then open a console and install the module by entering the following command:
  22. ``pip install --extra-index-url https://nexus.mukit.at/repository/odoo/simple <module>``
  23. The module name consists of the Odoo version and the module name, where
  24. underscores are replaced by a dash.
  25. **Module:**
  26. ``odoo<version>-addon-<module_name>``
  27. **Example:**
  28. ``sudo -H pip3 install --extra-index-url https://nexus.mukit.at/repository/odoo/simple odoo13-addon-muk-utils``
  29. Once the installation has been successfully completed, the app is already in the
  30. correct folder. Log on to your Odoo server and go to the Apps menu. Trigger the
  31. debug mode and update the list by clicking on the "Update Apps List" link. Now
  32. install the module by clicking on the install button.
  33. The biggest advantage of this variant is that you can now also update the app
  34. using the "pip" command. To do this, enter the following command in your console:
  35. ``pip install --upgrade --extra-index-url https://nexus.mukit.at/repository/odoo/simple <module>``
  36. When the process is finished, restart your server and update the application in
  37. Odoo. The steps are the same as for the installation only the button has changed
  38. from "Install" to "Upgrade".
  39. You can also view available Apps directly in our `repository <https://nexus.mukit.at/#browse/browse:odoo>`_
  40. and find a more detailed installation guide on our `website <https://mukit.at/page/open-source>`_.
  41. For modules licensed under a proprietary license, you will receive the access data after you purchased
  42. the module. If the purchase were made at the Odoo store please contact our `support <support@mukit.at>`_
  43. with a confirmation of the purchase to receive the corresponding access data.
  44. Upgrade
  45. ============
  46. To upgrade this module, you need to:
  47. Download the module and add it to your Odoo addons folder. Restart the server
  48. and log on to your Odoo server. Select the Apps menu and upgrade the module by
  49. clicking on the upgrade button.
  50. If you installed the module using the "pip" command, you can also update the
  51. module in the same way. Just type the following command into the console:
  52. ``pip install --upgrade --extra-index-url https://nexus.mukit.at/repository/odoo/simple <module>``
  53. When the process is finished, restart your server and update the application in
  54. Odoo, just like you would normally.
  55. Configuration
  56. =============
  57. No additional configuration is needed to use this module.
  58. Usage
  59. =====
  60. This module has no direct visible effect on the system. It adds a new route
  61. which can be used by modules which add fields with stream capability.
  62. Credit
  63. ======
  64. Contributors
  65. ------------
  66. * Mathias Markl <mathias.markl@mukit.at>
  67. Images
  68. ------
  69. Some pictures are based on or inspired by the icon set of Font Awesome:
  70. * `Font Awesome <https://fontawesome.com>`_
  71. Author & Maintainer
  72. -------------------
  73. This module is maintained by the `MuK IT GmbH <https://www.mukit.at/>`_.
  74. MuK IT is an Austrian company specialized in customizing and extending Odoo.
  75. We develop custom solutions for your individual needs to help you focus on
  76. your strength and expertise to grow your business.
  77. If you want to get in touch please contact us via `mail <sale@mukit.at>`_
  78. or visit our `website <https://mukit.at>`_.