https://github.com/chantouchsek/admin-pos
Point of Sales Admin Panel
https://github.com/chantouchsek/admin-pos
admin coreui vue vue2
Last synced: over 1 year ago
JSON representation
Point of Sales Admin Panel
- Host: GitHub
- URL: https://github.com/chantouchsek/admin-pos
- Owner: chantouchsek
- License: mit
- Created: 2018-12-01T08:43:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-16T13:18:28.000Z (over 7 years ago)
- Last Synced: 2025-01-15T10:55:36.962Z (over 1 year ago)
- Topics: admin, coreui, vue, vue2
- Language: Vue
- Size: 25.2 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Admin POS Admin Template
## Installation
### Clone repo
``` bash
# clone the repo
$ git clone https://github.com/chantouchsek/admin-pos admin-pos
# go into app's directory
$ cd admin-pos
# install app's dependencies
$ npm install
$ yarn
```
## Usage
``` bash
# serve with hot reload at localhost:8080
npm run serve
yarn serve
# build for production with minification
npm run build
yarn build
# run linter
npm run lint
yarn lint
# run unit tests
npm run test:unit
yarn test:unit
# run e2e tests
npm run test:e2e
yarn 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:
```
admin-pos/
├── 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
```