Restructure dashboard project for docker deploying 51/22451/1
authormaxbr <maxbr@mi.fu-berlin.de>
Mon, 26 Sep 2016 14:36:11 +0000 (16:36 +0200)
committermaxbr <maxbr@mi.fu-berlin.de>
Mon, 26 Sep 2016 14:36:11 +0000 (16:36 +0200)
commitff30b14a212f38cf59084d30e9f13f9f92d2be3b
treecbe10ef00ef2be5650bedb5b81e24bd3b205f52c
parent3ebfdcbcc91202482edb3f63fedde48646728fcd
Restructure dashboard project for docker deploying

Change-Id: I13cad51270504ee4bed8558598a8891af58a26ab
Signed-off-by: maxbr <maxbr@mi.fu-berlin.de>
100 files changed:
tools/pharos-dashboard/.gitignore
tools/pharos-dashboard/Makefile [new file with mode: 0644]
tools/pharos-dashboard/celerybeat-schedule [deleted file]
tools/pharos-dashboard/config.env.sample [new file with mode: 0644]
tools/pharos-dashboard/config/nginx/pharos_dashboard.conf [new file with mode: 0644]
tools/pharos-dashboard/config/postgres/docker-entrypoint-initdb.d/pharos_dashboard.sh [new file with mode: 0755]
tools/pharos-dashboard/deploy.org [deleted file]
tools/pharos-dashboard/docker-compose.yml [new file with mode: 0644]
tools/pharos-dashboard/readme.txt [new file with mode: 0644]
tools/pharos-dashboard/src/account/__init__.py [moved from tools/pharos-dashboard/account/__init__.py with 100% similarity]
tools/pharos-dashboard/src/account/admin.py [moved from tools/pharos-dashboard/account/admin.py with 100% similarity]
tools/pharos-dashboard/src/account/apps.py [moved from tools/pharos-dashboard/account/apps.py with 100% similarity]
tools/pharos-dashboard/src/account/forms.py [moved from tools/pharos-dashboard/account/forms.py with 100% similarity]
tools/pharos-dashboard/src/account/jira_util.py [moved from tools/pharos-dashboard/account/jira_util.py with 100% similarity]
tools/pharos-dashboard/src/account/middleware.py [moved from tools/pharos-dashboard/account/middleware.py with 100% similarity]
tools/pharos-dashboard/src/account/migrations/__init__.py [moved from tools/pharos-dashboard/account/migrations/__init__.py with 100% similarity]
tools/pharos-dashboard/src/account/models.py [moved from tools/pharos-dashboard/account/models.py with 100% similarity]
tools/pharos-dashboard/src/account/rsa.pem [moved from tools/pharos-dashboard/account/rsa.pem with 100% similarity]
tools/pharos-dashboard/src/account/rsa.pub [moved from tools/pharos-dashboard/account/rsa.pub with 100% similarity]
tools/pharos-dashboard/src/account/tests/__init__.py [moved from tools/pharos-dashboard/account/tests/__init__.py with 100% similarity]
tools/pharos-dashboard/src/account/tests/test_general.py [moved from tools/pharos-dashboard/account/tests/test_general.py with 100% similarity]
tools/pharos-dashboard/src/account/urls.py [moved from tools/pharos-dashboard/account/urls.py with 100% similarity]
tools/pharos-dashboard/src/account/views.py [moved from tools/pharos-dashboard/account/views.py with 100% similarity]
tools/pharos-dashboard/src/api/__init__.py [moved from tools/pharos-dashboard/api/__init__.py with 100% similarity]
tools/pharos-dashboard/src/api/serializers.py [moved from tools/pharos-dashboard/api/serializers.py with 100% similarity]
tools/pharos-dashboard/src/api/urls.py [moved from tools/pharos-dashboard/api/urls.py with 100% similarity]
tools/pharos-dashboard/src/api/views.py [moved from tools/pharos-dashboard/api/views.py with 100% similarity]
tools/pharos-dashboard/src/booking/__init__.py [moved from tools/pharos-dashboard/booking/__init__.py with 100% similarity]
tools/pharos-dashboard/src/booking/admin.py [moved from tools/pharos-dashboard/booking/admin.py with 100% similarity]
tools/pharos-dashboard/src/booking/apps.py [moved from tools/pharos-dashboard/booking/apps.py with 100% similarity]
tools/pharos-dashboard/src/booking/forms.py [moved from tools/pharos-dashboard/booking/forms.py with 100% similarity]
tools/pharos-dashboard/src/booking/migrations/__init__.py [moved from tools/pharos-dashboard/booking/migrations/__init__.py with 100% similarity]
tools/pharos-dashboard/src/booking/models.py [moved from tools/pharos-dashboard/booking/models.py with 100% similarity]
tools/pharos-dashboard/src/booking/tests/__init__.py [moved from tools/pharos-dashboard/booking/tests/__init__.py with 100% similarity]
tools/pharos-dashboard/src/booking/tests/test_models.py [moved from tools/pharos-dashboard/booking/tests/test_models.py with 100% similarity]
tools/pharos-dashboard/src/booking/tests/test_views.py [moved from tools/pharos-dashboard/booking/tests/test_views.py with 100% similarity]
tools/pharos-dashboard/src/booking/urls.py [moved from tools/pharos-dashboard/booking/urls.py with 100% similarity]
tools/pharos-dashboard/src/booking/views.py [moved from tools/pharos-dashboard/booking/views.py with 100% similarity]
tools/pharos-dashboard/src/dashboard/__init__.py [moved from tools/pharos-dashboard/dashboard/__init__.py with 100% similarity]
tools/pharos-dashboard/src/dashboard/admin.py [moved from tools/pharos-dashboard/dashboard/admin.py with 100% similarity]
tools/pharos-dashboard/src/dashboard/apps.py [moved from tools/pharos-dashboard/dashboard/apps.py with 100% similarity]
tools/pharos-dashboard/src/dashboard/fixtures/dashboard.json [moved from tools/pharos-dashboard/dashboard/fixtures/dashboard.json with 100% similarity]
tools/pharos-dashboard/src/dashboard/migrations/__init__.py [moved from tools/pharos-dashboard/dashboard/migrations/__init__.py with 100% similarity]
tools/pharos-dashboard/src/dashboard/models.py [moved from tools/pharos-dashboard/dashboard/models.py with 100% similarity]
tools/pharos-dashboard/src/dashboard/tasks.py [moved from tools/pharos-dashboard/dashboard/tasks.py with 100% similarity]
tools/pharos-dashboard/src/dashboard/templatetags/__init__.py [moved from tools/pharos-dashboard/dashboard/templatetags/__init__.py with 100% similarity]
tools/pharos-dashboard/src/dashboard/templatetags/jenkins_filters.py [moved from tools/pharos-dashboard/dashboard/templatetags/jenkins_filters.py with 100% similarity]
tools/pharos-dashboard/src/dashboard/templatetags/jira_filters.py [moved from tools/pharos-dashboard/dashboard/templatetags/jira_filters.py with 100% similarity]
tools/pharos-dashboard/src/dashboard/urls.py [moved from tools/pharos-dashboard/dashboard/urls.py with 100% similarity]
tools/pharos-dashboard/src/dashboard/views.py [moved from tools/pharos-dashboard/dashboard/views.py with 100% similarity]
tools/pharos-dashboard/src/jenkins/__init__.py [moved from tools/pharos-dashboard/jenkins/__init__.py with 100% similarity]
tools/pharos-dashboard/src/jenkins/adapter.py [moved from tools/pharos-dashboard/jenkins/adapter.py with 100% similarity]
tools/pharos-dashboard/src/jenkins/admin.py [new file with mode: 0644]
tools/pharos-dashboard/src/jenkins/apps.py [moved from tools/pharos-dashboard/jenkins/apps.py with 100% similarity]
tools/pharos-dashboard/src/jenkins/migrations/__init__.py [moved from tools/pharos-dashboard/jenkins/migrations/__init__.py with 100% similarity]
tools/pharos-dashboard/src/jenkins/models.py [moved from tools/pharos-dashboard/jenkins/models.py with 100% similarity]
tools/pharos-dashboard/src/jenkins/tasks.py [moved from tools/pharos-dashboard/jenkins/tasks.py with 100% similarity]
tools/pharos-dashboard/src/jenkins/tests.py [moved from tools/pharos-dashboard/jenkins/tests.py with 100% similarity]
tools/pharos-dashboard/src/manage.py [moved from tools/pharos-dashboard/manage.py with 100% similarity]
tools/pharos-dashboard/src/notification/__init__.py [moved from tools/pharos-dashboard/notification/__init__.py with 100% similarity]
tools/pharos-dashboard/src/notification/admin.py [moved from tools/pharos-dashboard/notification/admin.py with 100% similarity]
tools/pharos-dashboard/src/notification/apps.py [moved from tools/pharos-dashboard/notification/apps.py with 100% similarity]
tools/pharos-dashboard/src/notification/migrations/__init__.py [moved from tools/pharos-dashboard/notification_framework/__init__.py with 100% similarity]
tools/pharos-dashboard/src/notification/models.py [moved from tools/pharos-dashboard/notification/models.py with 100% similarity]
tools/pharos-dashboard/src/notification/signals.py [moved from tools/pharos-dashboard/notification/signals.py with 100% similarity]
tools/pharos-dashboard/src/notification/tasks.py [moved from tools/pharos-dashboard/notification/tasks.py with 100% similarity]
tools/pharos-dashboard/src/notification_framework/__init__.py [new file with mode: 0644]
tools/pharos-dashboard/src/notification_framework/notification.py [moved from tools/pharos-dashboard/notification_framework/notification.py with 100% similarity]
tools/pharos-dashboard/src/pharos_dashboard/__init__.py [moved from tools/pharos-dashboard/pharos_dashboard/__init__.py with 100% similarity]
tools/pharos-dashboard/src/pharos_dashboard/celery.py [moved from tools/pharos-dashboard/pharos_dashboard/celery.py with 100% similarity]
tools/pharos-dashboard/src/pharos_dashboard/settings.py [new file with mode: 0644]
tools/pharos-dashboard/src/pharos_dashboard/urls.py [moved from tools/pharos-dashboard/pharos_dashboard/urls.py with 100% similarity]
tools/pharos-dashboard/src/pharos_dashboard/wsgi.py [moved from tools/pharos-dashboard/pharos_dashboard/wsgi.py with 100% similarity]
tools/pharos-dashboard/src/static/bower.json [moved from tools/pharos-dashboard/static/bower.json with 100% similarity]
tools/pharos-dashboard/src/static/css/theme.css [moved from tools/pharos-dashboard/static/css/theme.css with 100% similarity]
tools/pharos-dashboard/src/static/js/booking-calendar.js [moved from tools/pharos-dashboard/static/js/booking-calendar.js with 100% similarity]
tools/pharos-dashboard/src/static/js/dataTables-sort.js [moved from tools/pharos-dashboard/static/js/dataTables-sort.js with 100% similarity]
tools/pharos-dashboard/src/static/js/datetimepicker-options.js [moved from tools/pharos-dashboard/static/js/datetimepicker-options.js with 100% similarity]
tools/pharos-dashboard/src/static/js/flot-pie-chart.js [moved from tools/pharos-dashboard/static/js/flot-pie-chart.js with 100% similarity]
tools/pharos-dashboard/src/static/js/fullcalendar-options.js [moved from tools/pharos-dashboard/static/js/fullcalendar-options.js with 100% similarity]
tools/pharos-dashboard/src/templates/account/user_list.html [moved from tools/pharos-dashboard/templates/account/user_list.html with 100% similarity]
tools/pharos-dashboard/src/templates/account/userprofile_update_form.html [moved from tools/pharos-dashboard/templates/account/userprofile_update_form.html with 100% similarity]
tools/pharos-dashboard/src/templates/base.html [moved from tools/pharos-dashboard/templates/base.html with 94% similarity]
tools/pharos-dashboard/src/templates/booking/booking_calendar.html [moved from tools/pharos-dashboard/templates/booking/booking_calendar.html with 100% similarity]
tools/pharos-dashboard/src/templates/booking/booking_detail.html [moved from tools/pharos-dashboard/templates/booking/booking_detail.html with 100% similarity]
tools/pharos-dashboard/src/templates/booking/booking_table.html [moved from tools/pharos-dashboard/templates/booking/booking_table.html with 100% similarity]
tools/pharos-dashboard/src/templates/dashboard/ci_pods.html [moved from tools/pharos-dashboard/templates/dashboard/ci_pods.html with 100% similarity]
tools/pharos-dashboard/src/templates/dashboard/dev_pods.html [moved from tools/pharos-dashboard/templates/dashboard/dev_pods.html with 100% similarity]
tools/pharos-dashboard/src/templates/dashboard/jenkins_slaves.html [moved from tools/pharos-dashboard/templates/dashboard/jenkins_slaves.html with 100% similarity]
tools/pharos-dashboard/src/templates/dashboard/resource.html [moved from tools/pharos-dashboard/templates/dashboard/resource.html with 100% similarity]
tools/pharos-dashboard/src/templates/dashboard/resource_all.html [moved from tools/pharos-dashboard/templates/dashboard/resource_all.html with 100% similarity]
tools/pharos-dashboard/src/templates/dashboard/resource_detail.html [moved from tools/pharos-dashboard/templates/dashboard/resource_detail.html with 100% similarity]
tools/pharos-dashboard/src/templates/dashboard/server_table.html [moved from tools/pharos-dashboard/templates/dashboard/server_table.html with 100% similarity]
tools/pharos-dashboard/src/templates/dashboard/table.html [moved from tools/pharos-dashboard/templates/dashboard/table.html with 100% similarity]
tools/pharos-dashboard/src/templates/layout.html [moved from tools/pharos-dashboard/templates/layout.html with 100% similarity]
tools/pharos-dashboard/src/templates/rest_framework/api.html [moved from tools/pharos-dashboard/templates/rest_framework/api.html with 100% similarity]
tools/pharos-dashboard/web/Dockerfile [new file with mode: 0644]
tools/pharos-dashboard/web/requirements.txt [new file with mode: 0644]
tools/pharos-dashboard/worker/Dockerfile [new file with mode: 0644]
tools/pharos-dashboard/worker/requirements.txt [new file with mode: 0644]