Skip to main content

A highly customizable workflow system for Django. Create surveys, activities, etc.

Project description

Django Workflow System

pypi-version

Finally, an awesome Django Workflow System.

Full documentation for the package is currently being written....but for now, here's what you need to get up and running.

Requirements

  • Python (3.5, 3.6, 3.7, 3.8)
  • Django (3.1+)

We highly recommend and only officially support the latest patch release of each Python and Django series.

Installation

pip install django-workflow-system

Post-Install Setup

Django Settings Additions

# You will need to add django_workflow_system and rest_framework to your installed apps
INSTALLED_APPS = [
    "django_workflow_system",
    "rest_framework",
    ...]

# You will need to add some authentication classes for DRF, more info can be found at https://www.django-rest-framework.org/api-guide/settings/
REST_FRAMEWORK = {
    "DEFAULT_AUTHENTICATION_CLASSES": [
        # "rest_framework.authentication.BasicAuthentication",
        "rest_framework.authentication.SessionAuthentication",
    ],
    "DEFAULT_PERMISSION_CLASSES": [
        "rest_framework.permissions.IsAuthenticated",
    ],
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-workflow-system-0.7.tar.gz (80.9 kB view hashes)

Uploaded Source

Built Distribution

django_workflow_system-0.7-py3-none-any.whl (130.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page