Django ERP is an open-source, user-oriented, ERP system based on Django framework.
- Official website: http://django-erp.github.io/website/
- Development: https://github.com/django-erp/django-erp/
- Issue tracker: https://github.com/django-erp/django-erp/issues/
- Wiki: https://github.com/django-erp/django-erp/wiki/
Make sure you have the following pre-requisites installed:
-
python >= 3.5 (required) http://www.python.org
-
pytz >= 2020.1 (required) http://pytz.sourceforge.net/
-
django >= 3.1 (required) http://www.djangoproject.com
-
apache2 (optional) http://httpd.apache.org
-
mod_wsgi (optional) http://code.google.com/p/modwsgi
-
Checkout sources from the GIT repository:
git clone https://github.com/django-erp/django-erp.git
It will clone the entire repository in a folder called django-erp:
cd django-erp
-
Install all pre-requisities (better inside a virtualenv) using pip:
pip install -r requirements.txt
-
Copy and rename djangoerp/settings/base.py.tmpl to djangoerp/settings/base.py.
-
Edit the djangoerp/settings/base.py content.
-
Initialize the database and all applications:
python manage migrate
-
Test the installation running the development web-server (http://localhost:8000 on your browser):
python manage runserver
-
Install required packages
pip install sphinx sphinx-autobuild
-
Change to docs directory
cd docs
-
Run builder
make html