Skip to content

Latest commit

 

History

History
84 lines (48 loc) · 2.39 KB

README.md

File metadata and controls

84 lines (48 loc) · 2.39 KB

django ERP

Build Status

Django ERP is an open-source, user-oriented, ERP system based on Django framework.

Pre-requisites

Make sure you have the following pre-requisites installed:

Installation

  1. 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

    python -m venv env

    source env-django-erp/Scripts/activate or source ../env-django-erp/Scripts/activate (if the virtualenv outside the project file )

  2. Copy and rename djangoerp/settings/base.py.tmpl to djangoerp/settings/base.py.

  3. Edit the djangoerp/settings/base.py content.

  4. Initialize the database and all applications:

    python manage.py migrate

    python manage.py makemigrations if you create modifications in models or create another module ( don't forget request pull it for django-erp development after stablitiy stage)

  5. Test the installation running the development web-server (http://localhost:8000 on your browser):

    python manage runserver

  6. create supper user for manage your erp system and you can add more users

    python manage.py createsuperuser

Compile documentation

  1. Install required packages

    pip install sphinx sphinx-autobuild

  2. Change to docs directory

    cd docs

  3. Run builder

    make html