Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Business rules plugin for Django. Allows users (customers or administrators) to setup business rules with html forms. Default layout is similar to django admin panel and can be easily overridden. Created rules can be easily used in workflows / scenarios / etc.

License

Notifications You must be signed in to change notification settings

konciergeMD/django-business-rules

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Business Rules

Django Business Rules is a simple Django app to support business rules.

Detailed documentation is in the "docs" directory.

Quick start

  1. Add "django_business_rules" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'django_business_rules',
    ]
    
  2. Include the business rules URLconf in your project urls.py like this:

    re_path(r'^dbr/', include('django_business_rules.urls', namespace='django_business_rules'))
    
  3. Run python manage.py migrate to create the dbr models.

  4. Run python manage.py dbr to generate business rules

  5. Visit http://127.0.0.1:8000/dbr/business-rule/ to participate in the dbr.

About

Business rules plugin for Django. Allows users (customers or administrators) to setup business rules with html forms. Default layout is similar to django admin panel and can be easily overridden. Created rules can be easily used in workflows / scenarios / etc.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 64.0%
  • JavaScript 30.5%
  • HTML 3.4%
  • CSS 2.1%