All Projects β†’ ra-systems β†’ Django Ra Erp

ra-systems / Django Ra Erp

Licence: agpl-3.0
A Django based framework to create diverse business solutions, equipped with a reporting engine and a responsive dashboard.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Django Ra Erp

Wq
πŸ“±πŸŒπŸ“‹ wq: a modular framework supporting web / native geographic data collection apps for mobile surveys and citizen science. Powered by Django REST Framework, Redux, React, and Material UI.
Stars: ✭ 182 (+68.52%)
Mutual labels:  framework, django
Djangosige
Sistema Integrado de GestΓ£o Empresarial baseado em Django
Stars: ✭ 250 (+131.48%)
Mutual labels:  erp, django
Ivory
IVORY is simple and highly customizable CSS framework, gives you all to build your pages faster and easier.
Stars: ✭ 196 (+81.48%)
Mutual labels:  framework, responsive-design
Django
The Web framework for perfectionists with deadlines.
Stars: ✭ 61,277 (+56637.96%)
Mutual labels:  framework, django
Best Of Web Python
πŸ† A ranked list of awesome python libraries for web development. Updated weekly.
Stars: ✭ 1,118 (+935.19%)
Mutual labels:  framework, django
Django Salesman
Headless e-commerce framework for Django.
Stars: ✭ 157 (+45.37%)
Mutual labels:  framework, django
Moqui Framework
Use Moqui Framework to build enterprise applications based on Java. It includes tools for databases (relational, graph, document), local and web services, web and other UI with screens and forms, security, file/resource access, scripts, templates, l10n, caching, logging, search, rules, workflow, multi-instance, and integration.
Stars: ✭ 205 (+89.81%)
Mutual labels:  erp, framework
Django Slick Reporting
Powerful and Efficient reporting engine with Charting capabilities
Stars: ✭ 123 (+13.89%)
Mutual labels:  django, charting
Gaintime
GainTime Γ© um framework de HTML, CSS e JS para desenvolvimento de projetos responsivos, focado na simplicidade.
Stars: ✭ 19 (-82.41%)
Mutual labels:  framework, responsive-design
Django Permission
[Not maintained] An enhanced permission system which support object permission in Django
Stars: ✭ 305 (+182.41%)
Mutual labels:  framework, django
Cms
Club Management System of amFOSS, powered by CMS
Stars: ✭ 263 (+143.52%)
Mutual labels:  framework, django
Flutterwebsite
The flutter.dev website recreated in Flutter. https://gallery.codelessly.com/flutterwebsites/flutterwebsite
Stars: ✭ 76 (-29.63%)
Mutual labels:  framework, responsive-design
Django Arctic
Django Arctic is a framework that simplifies the creation of custom content management systems.
Stars: ✭ 68 (-37.04%)
Mutual labels:  framework, django
Doorstep
The powerful e-commerce solution for Python
Stars: ✭ 88 (-18.52%)
Mutual labels:  django, responsive-design
Webmagic
A scalable web crawler framework for Java.
Stars: ✭ 10,186 (+9331.48%)
Mutual labels:  framework
Ionic Framework
A powerful cross-platform UI toolkit for building native-quality iOS, Android, and Progressive Web Apps with HTML, CSS, and JavaScript.
Stars: ✭ 45,802 (+42309.26%)
Mutual labels:  framework
Truffle
A tool for developing smart contracts. Crafted with the finest cacaos.
Stars: ✭ 11,909 (+10926.85%)
Mutual labels:  framework
Owtf
Offensive Web Testing Framework (OWTF), is a framework which tries to unite great tools and make pen testing more efficient http://owtf.org https://twitter.com/owtfp
Stars: ✭ 1,516 (+1303.7%)
Mutual labels:  framework
Esparto
Esparto v3.3 is a rapid development framework, synchronous task queue and GPIO manager with web UI for ESP8266 devices
Stars: ✭ 108 (+0%)
Mutual labels:  framework
Meteor
Meteor, the JavaScript App Platform
Stars: ✭ 42,739 (+39473.15%)
Mutual labels:  framework

.. image:: https://img.shields.io/pypi/v/django-ra-erp.svg :target: https://pypi.org/project/django-ra-erp

.. image:: https://img.shields.io/pypi/pyversions/django-ra-erp.svg :target: https://pypi.org/project/django-ra-erp

.. image:: https://img.shields.io/readthedocs/ra-framework :target: https://ra-framework.readthedocs.io/

.. image:: https://api.travis-ci.org/ra-systems/RA.svg?branch=master :target: https://travis-ci.org/ra-systems/django-ra-erp

.. image:: https://img.shields.io/codecov/c/github/ra-systems/django-ra-erp :target: https://codecov.io/gh/ra-systems/django-ra-erp

Ra Framework

A light-weight, effective, Django based framework to create various business applications, resource planing and management systems.

If offers a ready made platform where you can start to create data entry pages and attach various reports to them.

Features

  • A customizable responsive dashboard (built on top of Django's admin).
  • A Reporting Engine to compute and chart various and complex reports like time series and crosstab.
  • A widget system to display various reports in one page.
  • Extendable and customizable
  • Python 3.6 / 3.7 / 3.8/ Django 2.2, 3.0 Compatible

Installation

.. code-block:: console

$ pip install django-ra-erp

Quick start

  1. Create a virtual environment and install Django Ra ERP from Pypi

    .. code-block:: console

     $ virtualenv ra-erp
     $ source ra-erp/bin/activate
     $ pip install django-ra-erp
    
  2. Once installed, Ra provides a command to generate a new project, which would contains all the dependencies needed.

    .. code-block:: console

     $ ra-admin start my_project_name
    

    You can always integrate Ra to your existing project, it's fairly simple. Here is the guide Integrating into an existing django project <https://ra-framework.readthedocs.io/en/latest/usage/integrating_into_django.html>_

  3. Let's run the preparation commands and get started !

    .. code-block:: console

     $ ./manage.py migrate
     $ ./manage.py createsuperuser
     $ ./manage.py runserver
    

Documentation

Available on Read The Docs <https://ra-framework.readthedocs.io/en/latest/>_

Please Proceed to the tutorial Create a sales application Part 1 <https://ra-framework.readthedocs.io/en/latest/usage/tutorial_1.html>_

Testing and contribution

To run the test suite, first, create and activate a virtual environment. Then clone the repo, install the test requirements and run the tests::

# 1. Clone and install requirements
$ git clone [email protected]:ra-systems/django-ra-erp.git
$ cd tests
$ python -m pip install -e ..
$ python -m pip install -r requirements/py3.txt

# 2. Set the test database connection details in the environment
$ export DATABASE_NAME=<database name>
$ export DATABASE_USER=<database user>
$ export DATABASE_PASSWORD=<database password if any>

# 3. Run the tests
$ ./runtests.py
# And for Coverage report
$ coverage run --include=../* runtests.py [-k]
$ coverage html

For more information on contributing, we honor Django's guidelines <https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/unit-tests/>_.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].