Introduction In this article I go over the full build out of an ajax-enabled Django widget. Although I will walk through all of the steps necessary to create this widget, this article does assume you have at least some understanding of Django, ajax, and JavaScript. Check out some of our other Django-centric articles: with Docker,..
What is it? Code Multiplex, written in Python / Django / Django Rest Framework, is an open source RESTful application / RESTful language interpreter. Since it’s a REST application, it allows access to remote scripts without predefined language restrictions: you send JSON and you receive JSON. It’s a “Language as a Service” model, “Interpreter as..
Introduction In a previous article, I wrote about creating a Docker container for an existing Django project. The Dockerfile in that article copies the source code directly into the Docker image. This is good when you are ready to release the app to production but slows development because you have to rebuild the entire image..
Developing a module for Dolibarr has been quite a journey. Modules are incredibly easy to build, once you understand how to do it. Unfortunately, the documentation doesn’t explain every step. It can be overwhelming to attempt to create a module without any prior knowledge, or a guide to follow. In this blog post, I will..
Recap In this series, my team and I looked at Odoo, ERPNext, Dolibarr, and Tryton. We stepped through the installation, configuration and initial offerings each ERP solution. We came to a conclusion about the installation and overall offerings of these packages: not all of them are for us. Odoo The first open source ERP solution..
Introduction I have been working with Django for the last two years here at Accendero. We are working on a project that will be deployed in a Docker container, so I started looking into what it takes to create one for an existing Django project. The Docker documentation explains how to build an image and..
Intro For more information about ionic react and to view the tutorial that got me started go to https://ionicframework.com/blog/announcing-ionic-react/ Today I am going to build a simple JIRA App using Ionic react that displays a list of currently open issues for a particular user. Getting Started First things first, download the latest Ionic CLI: The..
Check out Part 1: Odoo, Part 2: ERPNext, Part 3: Dolibarr Today I am going to be taking a look at the open source business solution Tryton. According to tryton.org, “TRYTON is business software, ideal for companies of any size, easy to use, complete and 100% Open Source.” Tryton runs a pretty modular setup which has..
Check out Part 1: Odoo, Part 2: ERPNext, Part 4: Tryton Dolibarr Setup & Offerings Dolibarr is a PHP based open source ERP/CRM. I am following the Advanced Setup process because I prefer to clone the repo and get things running that way. They also offer compressed archives which you would extract into a webserver..