https://github.com/rkrajukhunt/ecommerce-vue
Example of E Commerce Using Vue.js
https://github.com/rkrajukhunt/ecommerce-vue
ecommerce elast full-text-search javafx-application mongodb vuejs vuex
Last synced: 2 months ago
JSON representation
Example of E Commerce Using Vue.js
- Host: GitHub
- URL: https://github.com/rkrajukhunt/ecommerce-vue
- Owner: rkrajukhunt
- License: mit
- Created: 2019-05-30T07:06:11.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-09-02T16:35:12.000Z (almost 6 years ago)
- Last Synced: 2025-12-31T13:14:28.347Z (5 months ago)
- Topics: ecommerce, elast, full-text-search, javafx-application, mongodb, vuejs, vuex
- Language: Vue
- Size: 1.43 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# eCommerce
## Installation
### Clone repo
``` bash
# clone the repo
$ git clone https://github.com/rkrajukhunt/ecommerce-vue
# go into app's directory
$ cd ecommerce-vue
# install app's dependencies
$ npm install
```
## Usage
``` bash
# serve with hot reload at localhost:8080
npm run serve
# build for production with minification
npm run build
# run linter
npm run lint
# run unit tests
npm run test:unit
# run e2e tests
npm run test:e2e
```
For a detailed explanation on how things work, check out the [Vue CLI Guide](https://cli.vuejs.org/guide/).
## What's included
Within the download you'll find the following directories and files:
```
CoreUI-Vue/
├── public/ # pure static assets (directly copied)
│ └── index.html # index.html template
├── src/ # project root
│ ├── assets/ # module assets (processed by webpack)
│ │ └── scss/ # user styles
│ ├── components/ # ui components
│ ├── containers/ # ui containers
│ ├── router/ # routing
│ ├── shared/ # utils
│ ├── views/ # ui views
│ ├── _nav.js # sidebar nav config
│ ├── App.vue # main app component
│ └── main.js # app entry file
├── test/
│ └── unit/ # unit tests
│ └── e2e/ # e2e tests
├── .eslintrc.js # eslint config
├── .gitignore # defaults for gitignore
├── .postcssrc.js # postcss config
├── CHANGELOG.md
├── README.md
├── babel.config.js # babel config
├── jest.config.js # jest config
├── vue.config.js # vue-cli config
├── LICENSE
└── package.json # build scripts and dependencies
```
## Bugs and feature requests
Have a bug or a feature request? [Please open a new issue](https://github.com/rkrajukhunt/ecommerce-vue/issues).
## Documentation
CoreUI's documentation, is hosted on our website [CoreUI](http://coreui.io/)