diff --git a/Vue_Full_Project/.babelrc b/.babelrc similarity index 100% rename from Vue_Full_Project/.babelrc rename to .babelrc diff --git a/Vue_Full_Project/.editorconfig b/.editorconfig similarity index 100% rename from Vue_Full_Project/.editorconfig rename to .editorconfig diff --git a/Vue_Full_Project/.eslintignore b/.eslintignore similarity index 100% rename from Vue_Full_Project/.eslintignore rename to .eslintignore diff --git a/Vue_Full_Project/.eslintrc.js b/.eslintrc.js similarity index 100% rename from Vue_Full_Project/.eslintrc.js rename to .eslintrc.js diff --git a/.gitignore b/.gitignore index e387af94..4f4c84e0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,17 @@ .DS_Store -.idea node_modules/ -dist/ +/dist/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* test/unit/coverage test/e2e/reports +selenium-debug.log + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln diff --git a/Vue_Full_Project/.postcssrc.js b/.postcssrc.js similarity index 100% rename from Vue_Full_Project/.postcssrc.js rename to .postcssrc.js diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..7ad675b1 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM debian + +RUN apt-get update +RUN apt-get install -y nginx curl gnupg2 + +RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - +RUN apt-get install -y nodejs && nodejs -v && npm -v + +WORKDIR /var/www/html/dashboard + +EXPOSE 8080 diff --git a/README.md b/README.md index a06b38cc..a7313ee3 100644 --- a/README.md +++ b/README.md @@ -1,69 +1,61 @@ -# CoreUI Vue - Free Bootstrap Admin Template [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=CoreUI%20-%20Free%20Vue%20Admin%20Template%20&url=http://coreui.io/vue/&hashtags=bootstrap,admin,template,dashboard,panel,free,angular,react,vue) +# Dashboard -### Check out our Vue Admin Templates and support CoreUI Development +This project is intended to show metrics and provide simplest instrumentation of the games -[![Bootstrap Admin Templates Bundle](https://genesisui.com/img/bundle2.png)](https://genesisui.com/admin-templates/vuejs/prime/?support=1) +## Important notice -[Check out Bootstrap Admin Templates Bundle](https://genesisui.com/admin-templates/vuejs/prime/?support=1) +Use this project from develop branch and child branch from develop also. -This is Vue.js version of our Bootstrap 4 admin template [CoreUI](https://github.com/mrholek/CoreUI-Free-Bootstrap-Admin-Template). +## Using through Docker -Please help us on [Product Hunt](https://www.producthunt.com/posts/coreui-open-source-bootstrap-4-admin-template-with-angular-2-react-js-vue-js-support) & [Designer News](https://www.designernews.co/stories/81127). Thanks in advance! +This project includes a docker for its execution, once on this project you only have to: -Why I decided to create CoreUI? Please read this article: [Jack of all trades, master of none. Why Boostrap Admin Templates suck.](https://medium.com/@lukaszholeczek/jack-of-all-trades-master-of-none-5ea53ef8a1f#.7eqx1bcd8) +``` docker build . ``` -CoreUI is an Open Source Vue & Bootstrap Admin Template. But CoreUI is not just another Admin Template. It goes way beyond hitherto admin templates thanks to transparent code and file structure. And if that's not enough, let’s just add that CoreUI consists bunch of unique features and over 1000 high quality icons. +If the execution has run correctly we can tag this machine as: -CoreUI is based on Bootstrap 4 and offers 6 versions: [HTML5 AJAX](https://github.com/mrholek/CoreUI-Free-Bootstrap-Admin-Template), [HTML5 Static](https://github.com/mrholek/CoreUI-Free-Bootstrap-Admin-Template), [AngularJS](https://github.com/mrholek/CoreUI-AngularJS), [Angular 2+](https://github.com/mrholek/CoreUI-Angular), [React.js](https://github.com/mrholek/CoreUI-React) & [Vue.js](https://github.com/mrholek/CoreUI-Vue). +``` docker tag ${{hash}} tangelogamesbarcelona/dashboard ``` -CoreUI is meant to be the UX game changer. Pure & transparent code is devoid of redundant components, so the app is light enough to offer ultimate user experience. This means mobile devices also, where the navigation is just as easy and intuitive as on a desktop or laptop. The CoreUI Layout API lets you customize your project for almost any device – be it Mobile, Web or WebApp – CoreUI covers them all! +To run the project, then simply: -[![CoreUI Vue Free Bootstrap Admin Template](http://coreui.io/assets/img/coreui.png "CoreUI Vue Free Bootstrap Admin Template")](http://coreui.io) +``` docker run -itd -p 8080:8080 -v ${LOCAL_PROJECT_PATH}:/var/www/html/dashboard tangelogamesbarcelona/dashboard``` -**NOTE:** Please remember to **STAR** this project and **FOLLOW** [my Github](https://github.com/mrholek) to keep you update with this template. +To see if everything is working properly, try in your browser: -## Demo +``` http://localhost:8080``` -A fully functional demo is available at [CoreUI](http://coreui.io/) +## Build Setup of project -## What's included +Please do all of this from inside the docker machine, to get into the docker , once is running, do: -Within the download you'll find the following directories and files: +``` docker ps ``` to choose the docker name + +Then: -``` -CoreUI-Vue/ -├── Vue_Full_Project/ -├── Vue_Starter/ - -``` - -## Other Versions +``` docker exec -it ${DOCKER_NAME} /bin/bash ``` -CoreUI includes 6 Version for Angular 4, AngularJS, React.js, Vue.js, Static HTML5 and AJAX HTML5. -* [Angular Version (Angular 2+)](https://github.com/mrholek/CoreUI-Angular). -* [AngularJS Version](https://github.com/mrholek/CoreUI-AngularJS). -* [HTML5 AJAX Version](https://github.com/mrholek/CoreUI-Free-Bootstrap-Admin-Template). -* [HTML5 Static Version](https://github.com/mrholek/CoreUI-Free-Bootstrap-Admin-Template). -* [React.js Version](https://github.com/mrholek/CoreUI-React). -* [Vue.js Version](https://github.com/mrholek/CoreUI-Vue). -* [ASP.NET Core 2 MVC Version](https://github.com/mrholek/CoreUI-NET) +``` bash +# install dependencies +npm install -## Bugs and feature requests +# serve with hot reload at localhost:8080 +npm run dev -Have a bug or a feature request? [Please open a new issue](https://github.com/mrholek/CoreUI-Vue/issues/new). +# build for production with minification +npm run build -## Documentation +# build for production and view the bundle analyzer report +npm run build --report -CoreUI's documentation, is hosted on our website [CoreUI](http://coreui.io/) +# run unit tests +npm run unit -## Copyright and license +# run e2e tests +npm run e2e -copyright 2017 creativeLabs Łukasz Holeczek. Code released under [the MIT license](https://github.com/mrholek/CoreUI-Vue/blob/master/LICENSE). -creativeLabs Łukasz Holeczek reserves the right to change the license of future releases. You can’t re-distribute the CoreUI as stock. You can’t do this if you modify the CoreUI. - -## Support CoreUI Development - -CoreUI is an MIT licensed open source project and completely free to use. However, the amount of effort needed to maintain and develop new features for the project is not sustainable without proper financial backing. You can support development by donating on [PayPal](https://www.paypal.me/holeczek) or buying one of our [premium bootstrap 4 admin templates](https://genesisui.com/?support=1). +# run all tests +npm test +``` -As of now I am exploring the possibility of working on CoreUI fulltime - if you are a business that is building core products using CoreUI, I am also open to conversations regarding custom sponsorship / consulting arrangements. Get in touch on [Twitter](https://twitter.com/lukaszholeczek). +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). diff --git a/Vue_Full_Project/.gitignore b/Vue_Full_Project/.gitignore deleted file mode 100644 index 4f4c84e0..00000000 --- a/Vue_Full_Project/.gitignore +++ /dev/null @@ -1,17 +0,0 @@ -.DS_Store -node_modules/ -/dist/ -npm-debug.log* -yarn-debug.log* -yarn-error.log* -test/unit/coverage -test/e2e/reports -selenium-debug.log - -# Editor directories and files -.idea -.vscode -*.suo -*.ntvs* -*.njsproj -*.sln diff --git a/Vue_Full_Project/CHANGELOG.md b/Vue_Full_Project/CHANGELOG.md deleted file mode 100644 index fb2eee1d..00000000 --- a/Vue_Full_Project/CHANGELOG.md +++ /dev/null @@ -1,86 +0,0 @@ -## [vue](./README.md) version `changelog` - -##### `v1.0.13` -- fix: rollback `optimize-css-assets-webpack-plugin` to `^3.2.0` -- refactor: App.vue scss/css imports cleanup -- chore: dependencies update - -##### `v1.0.12` -- refactor(Aside): b-tab title with icon issue -- chore: dependencies update -- refactor(pages): ``, `` -- refactor(dashboard): `` -- fix(widgets): props spacing -- refactor: `router/index/ja` minor tweaks -- refactor: rename components `c-aside`, `c-footer` -- refactor(breadcrumb): add `:key` porp -- feat(forms): datepicker input `` - -##### `v1.0.11` -- refactor: project directory structure -- update: vuejs-templates/webpack to `1.3.1` -- update: vue to `2.5.13` -- chore: dependencies update - -##### `v1.0.10` -- fix: `className` -> `class` -- refactor: `` -- refactor: `` -- refactor: `` -- refactor: remove `` -- test: initial `Dashboard` unit test added -- update: bootstrap-vue to `2.0.0-rc.1` -- chore: dependencies update - -###### `v1.0.9` -- refactor: Sidebar structure -- test: initial e2e test added -- chore: dependencies update - -###### `v1.0.8` -- update: vue to `2.5.13` -- update: Bootstrap to `4.0.0-beta.3` -- update: bootstrap-vue to `1.4.0` -- chore: dependencies update -- refactor: `` use the prop `responsive="sm"` instead of `class="table-responsive-sm"` -- fix: `Vue warn:` Do not use built-in or reserved HTML elements as component id: (header, aside, footer, table) -- feature: some Bootstrap4 components added -- temp tweaks(b4 beta3): `InputGroupAddon` and `InputGroupButton` -- refactor(checkboxes, radios, labels): temp tweaks -- feat: mobile sidebar link click closes the sidebar [#18](https://github.com/mrholek/CoreUI-Vue/pull/18) - -###### `v1.0.6` -- refactor: raw html to `b-row`, `b-col`, `b-card`, `b-button` components -- fix: Cards.vue: change `variant="accent-` to `class="card-accent-` -- refactor: Modal's ok-button variants -- refactor: forms with validation feedback -- update: bootstrap-vue to `1.1.0` -- update: vue to `2.5.6` - -###### `v1.0.5` -- update: bootstrap-vue to `1.0.x` -- fix: use `` instead of `` **[breaking change](https://bootstrap-vue.js.org/docs/components/form-radios)** :fire: -- refactor: `` bootstrap-vue component in `Tables` #24 -- refactor: extract `Table` component from `Tables` -- refactor: `` bootstrap-vue component in `Switches` #24 -- fix: add `table-responsive-sm` class to `Tables` #26 -- refactor: use component `` instead of deprecated prop `is-nav-bar` -- fix: `b-progress` `height` property workaround (bootstrap-vue) -- chore: dependencies update - -###### `v1.0.4` -- refactor: import Bootstrap 4 SCSS files from node_modules -- fix: callouts styles - -###### `v1.0.3` -- update: Bootstrap version to `4.0.0-beta.2` -- update: vue-chartjs to `3.0.0` **[breaking change](https://github.com/apertureless/vue-chartjs/releases/tag/v3.0.0)** :fire: - -###### `v1.0.2` -- update: to vue: `^2.5.x` -- update: bootstrap-vue to `1.0.0-beta.9` -- refactor: (vue `v2.5.x`) deprecated `