Skip to content

Commit ce2e1e2

Browse files
committed
Initial commit
1 parent 978471f commit ce2e1e2

File tree

4 files changed

+40
-8
lines changed

4 files changed

+40
-8
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
![Nuxt CoreUI Project](nuxtcoreui.jpg)
2+
13
# NuxtJS + CoreUI
24

35
Unofficial Nuxt + CoreUI project, free to use boilerplate for every need. For more information about Vue CoreUI you can see at [Official Vue CoreUI](https://github.com/mrholek/CoreUI-Vue).
@@ -37,9 +39,8 @@ $ npm start
3739

3840
- [x] Fix link and views
3941
- [x] Updgrade to latest NuxtJS boilerplate
42+
- [x] Using Express as server
4043
- [x] Move installation to Vue CLI
4144
- [x] Extend SCSS to Style Resources
4245
- [x] Improve performance and code style
43-
- [ ] Create sample auth middleware
44-
- [ ] Create sample CRUD views
4546

template/README.md

Lines changed: 37 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,49 @@
1-
![NuxtJS + CoreUI](static/img/nuxtcoreui.jpg)
1+
![Nuxt CoreUI Project](nuxtcoreui.jpg)
22

33
# NuxtJS + CoreUI
44

5-
NuxtUI is CoreUI Vue Free Bootstrap Admin Template and combined with NuxtJS.
5+
Unofficial Nuxt + CoreUI project, free to use boilerplate for every need. For more information about Vue CoreUI you can see at [Official Vue CoreUI](https://github.com/mrholek/CoreUI-Vue).
66

7-
[Official CoreUI Vue](https://github.com/mrholek/CoreUI-Vue)
7+
## Usage
8+
9+
If you want to use this boilerplate, make sure you already installed [NodeJS](https://nodejs.org/en/) and [Vue CLI](https://www.npmjs.com/package/vue-cli) on your local machine. And then, you can use below command to download this boilerplate.
10+
11+
``` bash
12+
$ vue init muhibbudins/nuxt-coreui my-project
13+
$ cd my-project
14+
15+
# install dependencies
16+
$ npm install # Or yarn install
17+
```
18+
19+
> Make sure to use a version of vue-cli >= 2.1 (`vue -V`).
20+
21+
### Development
22+
23+
``` bash
24+
# serve with hot reloading at localhost:3000
25+
$ npm run dev # Or yarn dev
26+
```
27+
28+
Go to [http://localhost:3000](http://localhost:3000)
29+
30+
### Production
31+
32+
``` bash
33+
# build for production and launch the server
34+
$ npm run build
35+
$ npm start
36+
```
837

938
## Todo
1039

1140
- [x] Fix link and views
1241
- [x] Updgrade to latest NuxtJS boilerplate
42+
- [x] Using Express as server
1343
- [x] Move installation to Vue CLI
44+
- [x] Extend SCSS to Style Resources
1445
- [x] Improve performance and code style
15-
- [ ] Create sample auth middleware
16-
- [ ] Create sample CRUD views
1746

47+
## License
48+
49+
This project under [NuxtJS License](https://github.com/nuxt/nuxt.js/blob/dev/LICENSE) and [CoreUI License](https://github.com/coreui/coreui-free-vue-admin-template/blob/master/LICENSE)

template/server/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
const express = require('express')
32
const consola = require('consola')
43
const { Nuxt, Builder } = require('nuxt')

template/static/img/nuxtcoreui.jpg

-16.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)