├── .gitignore ├── Procfile ├── README.md ├── django_dashing_demo_app ├── __init__.py ├── db.sqlite3 ├── settings.py ├── static │ └── dashing-config.js ├── urls.py ├── widgets.py └── wsgi.py ├── manage.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | *.pyc 3 | staticfiles 4 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn django_dashing_demo_app.wsgi --log-file - -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdb/django-dashing-demo-app/HEAD/README.md -------------------------------------------------------------------------------- /django_dashing_demo_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_dashing_demo_app/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdb/django-dashing-demo-app/HEAD/django_dashing_demo_app/db.sqlite3 -------------------------------------------------------------------------------- /django_dashing_demo_app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdb/django-dashing-demo-app/HEAD/django_dashing_demo_app/settings.py -------------------------------------------------------------------------------- /django_dashing_demo_app/static/dashing-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdb/django-dashing-demo-app/HEAD/django_dashing_demo_app/static/dashing-config.js -------------------------------------------------------------------------------- /django_dashing_demo_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdb/django-dashing-demo-app/HEAD/django_dashing_demo_app/urls.py -------------------------------------------------------------------------------- /django_dashing_demo_app/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdb/django-dashing-demo-app/HEAD/django_dashing_demo_app/widgets.py -------------------------------------------------------------------------------- /django_dashing_demo_app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdb/django-dashing-demo-app/HEAD/django_dashing_demo_app/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdb/django-dashing-demo-app/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtdb/django-dashing-demo-app/HEAD/requirements.txt --------------------------------------------------------------------------------