├── .gitignore ├── LICENCE ├── dashvisor ├── __init__.py ├── backends │ ├── __init__.py │ └── file.py ├── django_project │ ├── __init__.py │ ├── manage.py │ ├── settings.py │ └── urls.py ├── server.py ├── templates │ └── dashvisor │ │ └── dashboard.html ├── urls.py └── views.py ├── dev_requirements.txt ├── requirements.txt ├── setup.py └── test_dashvisor ├── __init__.py ├── cases.py ├── run_supervisors.py ├── run_tests.py ├── servers.conf ├── settings.py ├── supervisord_1.conf ├── supervisord_2.conf ├── supervisord_multi.py ├── test_backends.py └── test_server.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/LICENCE -------------------------------------------------------------------------------- /dashvisor/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dashvisor/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/dashvisor/backends/__init__.py -------------------------------------------------------------------------------- /dashvisor/backends/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/dashvisor/backends/file.py -------------------------------------------------------------------------------- /dashvisor/django_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dashvisor/django_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/dashvisor/django_project/manage.py -------------------------------------------------------------------------------- /dashvisor/django_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/dashvisor/django_project/settings.py -------------------------------------------------------------------------------- /dashvisor/django_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/dashvisor/django_project/urls.py -------------------------------------------------------------------------------- /dashvisor/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/dashvisor/server.py -------------------------------------------------------------------------------- /dashvisor/templates/dashvisor/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/dashvisor/templates/dashvisor/dashboard.html -------------------------------------------------------------------------------- /dashvisor/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/dashvisor/urls.py -------------------------------------------------------------------------------- /dashvisor/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/dashvisor/views.py -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | 3 | nose>=0.11.3 4 | coverage>=3.3.1 5 | supervisor 6 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/setup.py -------------------------------------------------------------------------------- /test_dashvisor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/test_dashvisor/__init__.py -------------------------------------------------------------------------------- /test_dashvisor/cases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/test_dashvisor/cases.py -------------------------------------------------------------------------------- /test_dashvisor/run_supervisors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/test_dashvisor/run_supervisors.py -------------------------------------------------------------------------------- /test_dashvisor/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/test_dashvisor/run_tests.py -------------------------------------------------------------------------------- /test_dashvisor/servers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/test_dashvisor/servers.conf -------------------------------------------------------------------------------- /test_dashvisor/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/test_dashvisor/settings.py -------------------------------------------------------------------------------- /test_dashvisor/supervisord_1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/test_dashvisor/supervisord_1.conf -------------------------------------------------------------------------------- /test_dashvisor/supervisord_2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/test_dashvisor/supervisord_2.conf -------------------------------------------------------------------------------- /test_dashvisor/supervisord_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/test_dashvisor/supervisord_multi.py -------------------------------------------------------------------------------- /test_dashvisor/test_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/test_dashvisor/test_backends.py -------------------------------------------------------------------------------- /test_dashvisor/test_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aleszoulek/django-dashvisor/HEAD/test_dashvisor/test_server.py --------------------------------------------------------------------------------