You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
21
22
22
## Table of Contents
23
23
24
24
*[Versions](#versions)
25
25
*[CoreUI Pro](#coreui-pro)
26
+
*[Quick Start](#quick-start)
26
27
*[Installation](#installation)
27
-
*[Basic usage](#create-react-app)
28
+
*[Basic usage](#basic-usage)
28
29
*[What's included](#whats-included)
29
30
*[Documentation](#documentation)
30
31
*[Versioning](#versioning)
@@ -35,66 +36,53 @@ CoreUI is meant to be the UX game changer. Pure & transparent code is devoid of
# dev server with hot reload at http://localhost:3000
92
73
$ npm start
93
74
```
94
75
76
+
or
77
+
78
+
```bash
79
+
# dev server with hot reload at http://localhost:3000
80
+
$ yarn start
81
+
```
82
+
95
83
Navigate to [http://localhost:3000](http://localhost:3000). The app will automatically reload if you change any of the source files.
96
84
97
-
### Build
85
+
####Build
98
86
99
87
Run `build` to build the project. The build artifacts will be stored in the `build/` directory.
100
88
@@ -103,28 +91,34 @@ Run `build` to build the project. The build artifacts will be stored in the `bui
103
91
$ npm run build
104
92
```
105
93
94
+
or
95
+
96
+
```bash
97
+
# build for production with minification
98
+
$ yarn build
99
+
```
100
+
106
101
## What's included
107
102
108
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:
│ ├── components/ # common components - header, footer, sidebar, etc.
113
+
│ ├── layouts/ # layout containers
114
+
│ ├── scss/ # scss styles
115
+
│ ├── views/ # application views
116
+
│ ├── _nav.js# sidebar navigation config
122
117
│ ├── App.js
123
-
│ ├── App.test.js
124
-
│ ├── polyfill.js
118
+
│ ├── ...
125
119
│ ├── index.js
126
-
│ ├── routes.js #routes config
127
-
│ └── store.js #template state example
120
+
│ ├── routes.js #routes config
121
+
│ └── store.js #template state example
128
122
│
129
123
└── package.json
130
124
```
@@ -133,8 +127,6 @@ CoreUI-React#v3.0.0
133
127
134
128
The documentation for the CoreUI Admin Template is hosted at our website [CoreUI for React](https://coreui.io/react/)
135
129
136
-
### :film_strip: How to setup coreui react theme in laravel. Video tutorial available [here](https://youtu.be/HVVpbpNUJ8M)
137
-
138
130
## Versioning
139
131
140
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/).
@@ -156,8 +148,7 @@ See [the Releases section of our project](https://github.com/coreui/coreui-free-
156
148
Get updates on CoreUI's development and chat with the project maintainers and community members.
157
149
158
150
- Follow [@core_ui on Twitter](https://twitter.com/core_ui).
159
-
- Read and subscribe to [CoreUI Blog](https://coreui.ui/blog/).
160
-
151
+
- Read and subscribe to [CoreUI Blog](https://blog.coreui.ui/).
0 commit comments