This is an automated email from the ASF dual-hosted git repository.

zhaoyanan pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-shardingsphere-benchmark.git.


    from 6afd1b2  update readme
     new e6e1fb4  feature:add ui-frontend project
     new 6b06548  feature:add dist folder
     new c122514  doc:update readme
     new 5335036  feature:add responsive layout
     new 77832f4  refactor:optimization tooltip position
     new caa37ea  refactor: update dist
     new 49000cb  Merge remote-tracking branch 'upstream/master'
     new 68ab68a  refactor:change directory name
     new 982ffb5  refactor:change the code format: add a line at the end
     new 8036904  refactor:delete dist
     new d9743a9  Merge pull request #3 from wqzwh/master

The 49 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 shadingsphere-benchmark-ui/.babelrc                |  27 ++
 shadingsphere-benchmark-ui/.editorconfig           |   9 +
 shadingsphere-benchmark-ui/.eslintignore           |   4 +
 shadingsphere-benchmark-ui/.eslintrc.js            | 297 +++++++++++++++++++++
 shadingsphere-benchmark-ui/.gitignore              |  17 ++
 shadingsphere-benchmark-ui/.postcssrc.js           |  27 ++
 shadingsphere-benchmark-ui/README.md               |  22 ++
 shadingsphere-benchmark-ui/build/build.js          |  58 ++++
 shadingsphere-benchmark-ui/build/check-versions.js |  71 +++++
 shadingsphere-benchmark-ui/build/utils.js          | 125 +++++++++
 .../build/vue-loader.conf.js                       |  22 ++
 .../build/webpack.base.conf.js                     | 119 +++++++++
 .../build/webpack.dev.conf.js                      | 131 +++++++++
 .../build/webpack.prod.conf.js                     | 152 +++++++++++
 shadingsphere-benchmark-ui/config/dev.env.js       |  24 ++
 shadingsphere-benchmark-ui/config/index.js         | 100 +++++++
 shadingsphere-benchmark-ui/config/prod.env.js      |  21 ++
 shadingsphere-benchmark-ui/favicon.ico             | Bin 0 -> 9662 bytes
 shadingsphere-benchmark-ui/favicon.png             | Bin 0 -> 24930 bytes
 shadingsphere-benchmark-ui/index.html              |  32 +++
 shadingsphere-benchmark-ui/package.json            |  87 ++++++
 shadingsphere-benchmark-ui/src/App.vue             |  18 ++
 shadingsphere-benchmark-ui/src/assets/logo.png     | Bin 0 -> 24930 bytes
 shadingsphere-benchmark-ui/src/assets/logo_top.png | Bin 0 -> 8832 bytes
 .../src/components/Container/index.vue             | 185 +++++++++++++
 .../src/components/Footer/index.vue                |  24 ++
 shadingsphere-benchmark-ui/src/main.js             |  15 ++
 shadingsphere-benchmark-ui/src/router/index.js     |  37 +++
 shadingsphere-benchmark-ui/src/utils/line.js       |  55 ++++
 shadingsphere-benchmark-ui/src/utils/mixin.js      |  69 +++++
 shadingsphere-benchmark-ui/src/utils/utils.js      |  11 +
 .../src/views/mysql-vs-sharding/index.vue          |  74 +++++
 .../sharding-proxy-master-slave-sharding/index.vue |  75 ++++++
 .../views/sharding-proxy-master-slave/index.vue    |  75 ++++++
 .../index.vue                                      |  75 ++++++
 .../static/.gitkeep                                |   0
 shadingsphere-benchmark-ui/static/404.html         |  31 +++
 37 files changed, 2089 insertions(+)
 create mode 100644 shadingsphere-benchmark-ui/.babelrc
 create mode 100644 shadingsphere-benchmark-ui/.editorconfig
 create mode 100644 shadingsphere-benchmark-ui/.eslintignore
 create mode 100644 shadingsphere-benchmark-ui/.eslintrc.js
 create mode 100644 shadingsphere-benchmark-ui/.gitignore
 create mode 100644 shadingsphere-benchmark-ui/.postcssrc.js
 create mode 100644 shadingsphere-benchmark-ui/README.md
 create mode 100644 shadingsphere-benchmark-ui/build/build.js
 create mode 100644 shadingsphere-benchmark-ui/build/check-versions.js
 create mode 100644 shadingsphere-benchmark-ui/build/utils.js
 create mode 100644 shadingsphere-benchmark-ui/build/vue-loader.conf.js
 create mode 100644 shadingsphere-benchmark-ui/build/webpack.base.conf.js
 create mode 100644 shadingsphere-benchmark-ui/build/webpack.dev.conf.js
 create mode 100644 shadingsphere-benchmark-ui/build/webpack.prod.conf.js
 create mode 100644 shadingsphere-benchmark-ui/config/dev.env.js
 create mode 100644 shadingsphere-benchmark-ui/config/index.js
 create mode 100644 shadingsphere-benchmark-ui/config/prod.env.js
 create mode 100644 shadingsphere-benchmark-ui/favicon.ico
 create mode 100644 shadingsphere-benchmark-ui/favicon.png
 create mode 100644 shadingsphere-benchmark-ui/index.html
 create mode 100644 shadingsphere-benchmark-ui/package.json
 create mode 100644 shadingsphere-benchmark-ui/src/App.vue
 create mode 100644 shadingsphere-benchmark-ui/src/assets/logo.png
 create mode 100644 shadingsphere-benchmark-ui/src/assets/logo_top.png
 create mode 100644 
shadingsphere-benchmark-ui/src/components/Container/index.vue
 create mode 100644 shadingsphere-benchmark-ui/src/components/Footer/index.vue
 create mode 100644 shadingsphere-benchmark-ui/src/main.js
 create mode 100644 shadingsphere-benchmark-ui/src/router/index.js
 create mode 100644 shadingsphere-benchmark-ui/src/utils/line.js
 create mode 100644 shadingsphere-benchmark-ui/src/utils/mixin.js
 create mode 100644 shadingsphere-benchmark-ui/src/utils/utils.js
 create mode 100644 
shadingsphere-benchmark-ui/src/views/mysql-vs-sharding/index.vue
 create mode 100644 
shadingsphere-benchmark-ui/src/views/sharding-proxy-master-slave-sharding/index.vue
 create mode 100644 
shadingsphere-benchmark-ui/src/views/sharding-proxy-master-slave/index.vue
 create mode 100644 
shadingsphere-benchmark-ui/src/views/sharding-proxy-single-database-single-table/index.vue
 copy report/data/encrypt/4.0_sp_update_enc_sharding.log_plot => 
shadingsphere-benchmark-ui/static/.gitkeep (100%)
 create mode 100644 shadingsphere-benchmark-ui/static/404.html

Reply via email to