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
Copy file name to clipboardExpand all lines: README.md
+23-6Lines changed: 23 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,8 @@ AngularJS, Angular2, React and Meteor versions are coming soon.
33
33
### Table of contents
34
34
35
35
*[Browser support](#browser-support)
36
-
*[Getting started](#getting-started)
36
+
*[Download](#download)
37
+
*[Development](#development)
37
38
*[Folder structure](#folder-structure)
38
39
*[File types](#file-types)
39
40
*[Build tasks](#build-tasks)
@@ -51,13 +52,17 @@ AngularJS, Angular2, React and Meteor versions are coming soon.
51
52
Some of the components use the new Flexbox Layout module which is available in most modern browsers. Bootstrap4 is used as main framework. Please make sure that it's suitable for you: [Flexbox browser support](http://caniuse.com/#feat=flexbox).
52
53
53
54
<br>
54
-
## Getting Started
55
+
## Download
55
56
56
-
For assembling the application, you need to have [NodeJs](https://nodejs.org/en/) with npm. You also need to have Bower installed globally.
57
+
You can download this project in 2 different ways: <ahref="https://github.com/modularcode/modular-admin-html/releases/download/v1.0.0-beta/modular-admin-html-v1.0.0-beta.zip"target="_blank">download zip</a> or ```git clone https://github.com/modularcode/modular-admin-html.git ```.
The downloaded zip file will contain ```dist/``` folder which is compiled version of the project (with all scripts are merged together, processed styles and templates). You can use it as final result, but for development you should use aplication sources locaed in ```src/``` folder and rebuild the project. See [development](#development).
62
+
63
+
**Warning!** all changes made in ```dist/``` folder would be overwriten on application build.
64
+
65
+
#### Git clone
61
66
62
67
Clone repository to the local `modular-admin-html` folder
63
68
```
@@ -69,6 +74,18 @@ Change to the new folder
69
74
cd modular-admin-html
70
75
```
71
76
77
+
The cloned repository desn't contain prebuilt version of the project and you need to build it, See [development](#development).
78
+
79
+
## Development
80
+
81
+
For building the application, you need to have [NodeJs](https://nodejs.org/en/) with npm. You also need to have [Bower](http://bower.io/) installed globally.
82
+
From the project folder run the following commands:
0 commit comments