DEV Community

Cover image for Hubleto 0.27 installation
shoki
shoki

Posted on

Hubleto 0.27 installation

Few days ago a new version of Hubleto ERP/CRM has been released - Hubleto 0.27. Although still in a beta version, it already contains nice set of features in its community apps. The good news is that community apps (or 'community version', if you like) are completely for free.

You can easily install and use Hubleto, even for commercial project. Here I show how to do it.

Production-ready version

The easiest option is to use Hubleto as-is - a production version without any customization.

The installation is pretty straight-forward for all who know 'composer' (a PHP package manager). Simply create any folder accessible by your webserver (e.g., /var/www/html/hubleto) and run following commands in this folder:

composer create-project hubleto/erp-project .
php hubleto init
Enter fullscreen mode Exit fullscreen mode

The first command downloads the production-ready Hubleto ERP and all necessary files and folders. Then, the second command will guide you through the installation and configuration proces.

Done. It is this simple. Try it now.

Customizations

You have also an option to customize your Hubleto. The easiest and recommended way is to develop your own custom Hubleto app.

And again, its mega easy, just run this command in your Hubleto project folder:

php hubleto create app HelloWorldApp
Enter fullscreen mode Exit fullscreen mode

This command creates necessary files and folders in src/apps/HelloWorldApp. You are now ready to develop a full-featured, Model-View-Controller based app.

Conclusion

We've learned how to install production-ready Hubleto ERP and how to create first custom Hubleto app. And we've shown that is is super-easy and ... Free...

Bonus: There is one additional options for real developers: to use Hubleto ReactUI to create apps with a stunning user interface. Check https://developer.hubleto.com for more information.

Top comments (0)