https://github.com/vikas-ukani/photo-point-admin
Photo Maker - Admin Panel - Complete Admin Panel Customization Panel Created In VueJS Using Lumen APIs
https://github.com/vikas-ukani/photo-point-admin
frontend laravelapi rest-api vuejs vuex
Last synced: 3 months ago
JSON representation
Photo Maker - Admin Panel - Complete Admin Panel Customization Panel Created In VueJS Using Lumen APIs
- Host: GitHub
- URL: https://github.com/vikas-ukani/photo-point-admin
- Owner: vikas-ukani
- License: mit
- Created: 2019-12-08T17:10:07.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-13T17:48:09.000Z (almost 6 years ago)
- Last Synced: 2025-03-16T22:44:37.290Z (8 months ago)
- Topics: frontend, laravelapi, rest-api, vuejs, vuex
- Language: Vue
- Homepage:
- Size: 6.6 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Photo Maker - Admin Panel - Complete Admin Panel Customization Panel Created In VueJS Using Lumen APIs
## Installation
### Clone repo
```bash
# clone the repo from GIT
$ git clone https://github.com/vikas-ukani/photo-point-admin.git
# go into admin's directory
$ cd photo-point-admin
# install app's dependencies
$ npm install
```
## Usage
```bash
# Start with hot reload at localhost:8080
npm run start
# 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
```
## 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
```