Yardstick GUI & GUI deployment 73/37973/5
authorchenjiankun <chenjiankun1@huawei.com>
Mon, 24 Jul 2017 04:13:56 +0000 (04:13 +0000)
committerchenjiankun <chenjiankun1@huawei.com>
Thu, 27 Jul 2017 04:02:50 +0000 (04:02 +0000)
commitedbe3568a052da8afd24b6877c4c6fdcc7627ba3
tree54e1870ad8171471a97c1e07bd9a0f4146e07bb1
parent869d5fdb0b7a6070a78b4ec21d6b6c1cba14da6c
Yardstick GUI & GUI deployment

JIRA: YARDSTICK-758

As E release plan, we have the need of yardstick GUI.
This patch is GUI front end code and deployment.
The backend code is yardstick API.

Change-Id: Ib15f78bcc50168c7828beff97256e9939c6da809
Signed-off-by: chenjiankun <chenjiankun1@huawei.com>
79 files changed:
api/database/v2/models.py
api/resources/v2/images.py
api/resources/v2/tasks.py
api/resources/v2/testcases.py
api/urls.py
docker/Dockerfile
docker/nginx.sh [new file with mode: 0755]
docker/supervisor.sh [new file with mode: 0755]
docker/uwsgi.sh [moved from api/api-prepare.sh with 59% similarity]
gui/Gruntfile.js [new file with mode: 0644]
gui/app/404.html [new file with mode: 0644]
gui/app/favicon.ico [new file with mode: 0644]
gui/app/images/back.png [new file with mode: 0644]
gui/app/images/checkno.png [new file with mode: 0644]
gui/app/images/checkyes.png [new file with mode: 0644]
gui/app/images/close.png [new file with mode: 0644]
gui/app/images/loading.gif [new file with mode: 0644]
gui/app/images/loading2.gif [new file with mode: 0644]
gui/app/images/statusno.png [new file with mode: 0644]
gui/app/images/statusyes.png [new file with mode: 0644]
gui/app/images/url.json [new file with mode: 0644]
gui/app/images/yeoman.png [new file with mode: 0644]
gui/app/index.html [new file with mode: 0644]
gui/app/robots.txt [new file with mode: 0644]
gui/app/scripts/app.js [new file with mode: 0644]
gui/app/scripts/controllers/container.controller.js [new file with mode: 0644]
gui/app/scripts/controllers/content.controller.js [new file with mode: 0644]
gui/app/scripts/controllers/detail.controller.js [new file with mode: 0644]
gui/app/scripts/controllers/image.controller.js [new file with mode: 0644]
gui/app/scripts/controllers/main.js [new file with mode: 0644]
gui/app/scripts/controllers/pod.controller.js [new file with mode: 0644]
gui/app/scripts/controllers/project.controller.js [new file with mode: 0644]
gui/app/scripts/controllers/projectDetail.controller.js [new file with mode: 0644]
gui/app/scripts/controllers/report.controller.js [new file with mode: 0644]
gui/app/scripts/controllers/suitecreate.controller.js [new file with mode: 0644]
gui/app/scripts/controllers/suitedetail.controller.js [new file with mode: 0644]
gui/app/scripts/controllers/task.controller.js [new file with mode: 0644]
gui/app/scripts/controllers/taskModify.controller.js [new file with mode: 0644]
gui/app/scripts/controllers/testcase.controller.js [new file with mode: 0644]
gui/app/scripts/controllers/testcasedetail.controller.js [new file with mode: 0644]
gui/app/scripts/controllers/testsuit.controller.js [new file with mode: 0644]
gui/app/scripts/factory/main.factory.js [new file with mode: 0644]
gui/app/scripts/router.config.js [new file with mode: 0644]
gui/app/styles/main.css [new file with mode: 0644]
gui/app/views/container.html [new file with mode: 0644]
gui/app/views/content.html [new file with mode: 0644]
gui/app/views/environmentDetail.html [new file with mode: 0644]
gui/app/views/environmentList.html [new file with mode: 0644]
gui/app/views/layout/footer.html [new file with mode: 0644]
gui/app/views/layout/header.html [new file with mode: 0644]
gui/app/views/layout/sideNav.html [new file with mode: 0644]
gui/app/views/layout/sideNav2.html [new file with mode: 0644]
gui/app/views/main.html [new file with mode: 0644]
gui/app/views/main2.html [new file with mode: 0644]
gui/app/views/modal/chooseContainer.html [new file with mode: 0644]
gui/app/views/modal/deleteConfirm.html [new file with mode: 0644]
gui/app/views/modal/environmentDialog.html [new file with mode: 0644]
gui/app/views/modal/projectCreate.html [new file with mode: 0644]
gui/app/views/modal/suiteName.html [new file with mode: 0644]
gui/app/views/modal/taskCreate.html [new file with mode: 0644]
gui/app/views/podupload.html [new file with mode: 0644]
gui/app/views/projectList.html [new file with mode: 0644]
gui/app/views/projectdetail.html [new file with mode: 0644]
gui/app/views/report.html [new file with mode: 0644]
gui/app/views/suite.html [new file with mode: 0644]
gui/app/views/suitedetail.html [new file with mode: 0644]
gui/app/views/taskList.html [new file with mode: 0644]
gui/app/views/taskmodify.html [new file with mode: 0644]
gui/app/views/testcasechoose.html [new file with mode: 0644]
gui/app/views/testcasedetail.html [new file with mode: 0644]
gui/app/views/testcaselist.html [new file with mode: 0644]
gui/app/views/uploadImage.html [new file with mode: 0644]
gui/bower.json [new file with mode: 0644]
gui/gui.sh [new file with mode: 0755]
gui/package.json [new file with mode: 0644]
gui/test/.jshintrc [new file with mode: 0644]
gui/test/karma.conf.js [new file with mode: 0644]
gui/test/spec/controllers/main.js [new file with mode: 0644]
install.sh