Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 689 Bytes

README.md

File metadata and controls

42 lines (30 loc) · 689 Bytes

Django Viewflow Demo

A workflow demo using django, viewflow and adminlte

Requirements

  • python 3
  • django
  • django-viewflow
  • celery
  • amqp

Installation

$ python3 -m venv env
# or
# virtualenv -p python3 env  # python 3.6 tested
$ . env/bin/activate
$ git clone https://github.com/rgharzeddine/django-viewflow-demo.git
$ cd django-viewflow-demo
$ pip install -r requirements.txt

Running Demo

run django

$ . reset_flows.sh
$ ./manage.py runserver 0.0.0.0:8000

run celery worker

$ celery -A demo worker --loglevel=info