# visiual-platform **Repository Path**: simonblowsnow/visiual-platform ## Basic Information - **Project Name**: visiual-platform - **Description**: 在线拖拽式BI平台,基于ECharts,面向非技术人员和技术人员,用于快速解决绘图设计及开发。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 3 - **Created**: 2018-07-06 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vis-platform > A Vue.js project ## Build Setup ``` bash # install dependencies npm install # serve with hot reload at localhost:8080 npm run dev # build for production with minification npm run build # build for production and view the bundle analyzer report npm run build --report # run unit tests npm run unit # run e2e tests npm run e2e # run all tests npm test ``` # how to deploy in production environment, need ajax post data cross-domain # use nginx, for example: server { listen 83; location / { root /home/apache/web83; index index.html index.htm; } location /api/ { proxy_pass http://localhost:3000/; } } # this show that use 83 as static website port, with backend server using port 3000. # then, visit 83 for ajax request will be proxy_pass to 3000, # note the character '/' in the end of proxy_pass url. For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).