Skip to content

Commit a759550

Browse files
committed
docs: update readme
1 parent 6f89fe8 commit a759550

File tree

1 file changed

+150
-19
lines changed

1 file changed

+150
-19
lines changed

README.md

Lines changed: 150 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,165 @@
1-
# @coreui/coreui-free-vue-admin-template
1+
[![@coreui coreui](https://img.shields.io/badge/@coreui%20-coreui-lightgrey.svg?style=flat-square)](https://github.com/coreui/coreui)
2+
[![npm package][npm-coreui-badge]][npm-coreui]
3+
[![NPM downloads][npm-coreui-download]][npm-coreui]
4+
[![@coreui vue](https://img.shields.io/badge/@coreui%20-vue-lightgrey.svg?style=flat-square)](https://github.com/coreui/vue)
5+
[![npm package][npm-coreui-vue-badge]][npm-coreui-vue]
6+
[![NPM downloads][npm-coreui-vue-download]][npm-coreui-vue]
7+
[![npm next][npm-next]][npm]
28

3-
## Project setup
4-
```
5-
yarn install
6-
```
9+
[npm-coreui]: https://www.npmjs.com/package/@coreui/coreui
10+
[npm-coreui-badge]: https://img.shields.io/npm/v/@coreui/coreui.png?style=flat-square
11+
[npm-coreui-download]: https://img.shields.io/npm/dm/@coreui/coreui.svg?style=flat-square
12+
[npm-coreui-vue]: https://www.npmjs.com/package/@coreui/vue
13+
[npm-coreui-vue-badge]: https://img.shields.io/npm/v/@coreui/vue.png?style=flat-square
14+
[npm-coreui-vue-download]: https://img.shields.io/npm/dm/@coreui/vue.svg?style=flat-square
15+
[npm-next]: https://img.shields.io/npm/v/@coreui/vue/next.png?style=flat-square
16+
[npm]: https://www.npmjs.com/package/@coreui/vue
717

8-
### Compiles and hot-reloads for development
9-
```
10-
yarn serve
11-
```
18+
# CoreUI Free Vue Admin Template v4
19+
20+
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!
21+
22+
## Table of Contents
23+
24+
* [Versions](#versions)
25+
* [CoreUI Pro](#coreui-pro)
26+
* [Quick Start](#quick-start)
27+
* [Installation](#installation)
28+
* [Basic usage](#basic-usage)
29+
* [What's included](#whats-included)
30+
* [Documentation](#documentation)
31+
* [Versioning](#versioning)
32+
* [Creators](#creators)
33+
* [Community](#community)
34+
* [Copyright and License](#copyright-and-license)
35+
36+
## Versions
37+
38+
* [CoreUI Free Bootstrap Admin Template](https://github.com/coreui/coreui-free-bootstrap-admin-template)
39+
* [CoreUI Free Angular Admin Template](https://github.com/coreui/coreui-free-angular-admin-template)
40+
* [CoreUI Free React.js Admin Template](https://github.com/coreui/coreui-free-react-admin-template)
41+
* [CoreUI Free Vue.js Admin Template](https://github.com/coreui/coreui-free-vue-admin-template)
42+
43+
## CoreUI Pro
44+
45+
**Only customers with [Enterpise Membership Plan](https://coreui.io/pro/#buy) have access to private github CoreUI Pro repository.**
1246

13-
### Compiles and minifies for production
47+
* 💪 [CoreUI Pro Bootstrap Admin Template](https://coreui.io/pro/)
48+
* 💪 [CoreUI Pro Angular Admin Template](https://coreui.io/pro/angular)
49+
* 💪 [CoreUI Pro React Admin Template](https://coreui.io/pro/react)
50+
* 💪 [CoreUI Pro Vue Admin Template](https://coreui.io/pro/vue)
51+
52+
## Quick Start
53+
54+
- [Download the latest release](https://github.com/coreui/coreui-free-vue-admin-template/archive/refs/heads/v4.zip)
55+
- Clone the repo: `git clone https://github.com/coreui/coreui-free-vue-admin-template.git`
56+
57+
### Instalation
58+
59+
``` bash
60+
$ npm install
1461
```
15-
yarn build
62+
63+
or
64+
65+
``` bash
66+
$ yarn install
1667
```
1768

18-
### Run your unit tests
69+
### Basic usage
70+
71+
``` bash
72+
# dev server with hot reload at http://localhost:3000
73+
$ npm serve
1974
```
20-
yarn test:unit
75+
76+
or
77+
78+
``` bash
79+
# dev server with hot reload at http://localhost:3000
80+
$ yarn serve
2181
```
2282

23-
### Run your end-to-end tests
83+
Navigate to [http://localhost:3000](http://localhost:3000). The app will automatically reload if you change any of the source files.
84+
85+
#### Build
86+
87+
Run `build` to build the project. The build artifacts will be stored in the `build/` directory.
88+
89+
```bash
90+
# build for production with minification
91+
$ npm run build
2492
```
25-
yarn test:e2e
93+
94+
or
95+
96+
```bash
97+
# build for production with minification
98+
$ yarn build
2699
```
27100

28-
### Lints and fixes files
101+
## What's included
102+
103+
Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:
104+
29105
```
30-
yarn lint
106+
coreui-free-vue-admin-template
107+
├── public/ # static files
108+
│ └── index.html # html template
109+
110+
├── src/ # project root
111+
│ ├── assets/ # images, icons, etc.
112+
│ ├── components/ # common components - header, footer, sidebar, etc.
113+
│ ├── layouts/ # layout containers
114+
│ ├── scss/ # scss styles
115+
│ ├── router # routes config
116+
│ └── store # template state example
117+
│ ├── views/ # application views
118+
│ ├── _nav.js # sidebar navigation config
119+
│ ├── App.vue
120+
│ ├── ...
121+
│ └── main.js
122+
123+
└── package.json
31124
```
32125

33-
### Customize configuration
34-
See [Configuration Reference](https://cli.vuejs.org/config/).
126+
## Documentation
127+
128+
The documentation for the CoreUI Admin Template is hosted at our website [CoreUI for Vue](https://coreui.io/vue/)
129+
130+
## Versioning
131+
132+
For transparency into our release cycle and in striving to maintain backward compatibility, CoreUI Free Admin Template is maintained under [the Semantic Versioning guidelines](http://semver.org/).
133+
134+
See [the Releases section of our project](https://github.com/coreui/coreui-free-vue-admin-template/releases) for changelogs for each release version.
135+
136+
## Creators
137+
138+
**Łukasz Holeczek**
139+
* <https://twitter.com/lukaszholeczek>
140+
* <https://github.com/mrholek>
141+
* <https://github.com/coreui>
142+
143+
**CoreUI team**
144+
* https://github.com/orgs/coreui/people
145+
146+
## Community
147+
148+
Get updates on CoreUI's development and chat with the project maintainers and community members.
149+
150+
- Follow [@core_ui on Twitter](https://twitter.com/core_ui).
151+
- Read and subscribe to [CoreUI Blog](https://blog.coreui.ui/).
152+
153+
## Copyright and License
154+
155+
copyright 2021 creativeLabs Łukasz Holeczek.
156+
157+
158+
Code released under [the MIT license](https://github.com/coreui/coreui-free-vue-admin-template/blob/master/LICENSE).
159+
There is only one limitation you can't can’t re-distribute the CoreUI as stock. You can’t do this if you modify the CoreUI. In past we faced some problems with persons who tried to sell CoreUI based templates.
160+
161+
## Support CoreUI Development
162+
163+
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 buying [CoreUI Pro Version](https://coreui.io/pro/).
164+
165+
We're also open to conversations regarding custom sponsorship / consulting arrangements. Get in touch on [Twitter](https://twitter.com/lukaszholeczek).

0 commit comments

Comments
 (0)