Skip to content

Commit 96af475

Browse files
committed
Added cli files
1 parent 22b2e08 commit 96af475

File tree

212 files changed

+2358
-1700
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

212 files changed

+2358
-1700
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
## [1.4.0] - 2017-08-23
2+
### Added
3+
- added angular-cli
4+
- update to angular 4
5+
6+
## [1.2.0] - 2017-04-05
7+
### Added
8+
- added Upgrade to PRO page
9+
- update package
10+
- made sidebar dynamic
11+
12+
## [1.1.1] - 2017-03-21
13+
### Added
14+
- added "@types/core-js": "0.9.35" in package
15+
16+
## [1.1.0] - 2017-03-20
17+
### small fix
18+
19+
## [1.0.0] - 2017-01-30
20+
### initial Release

README.md

Lines changed: 98 additions & 103 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# [Material Dashboard Angular - Free Bootstrap Material Design Admin](https://www.creative-tim.com/product/material-dashboard-angular2)
1+
# [Material Dashboard Angular - Free Bootstrap Material Design Admin](https://www.creative-tim.com/product/material-dashboard-angular2)[![version][version-badge]][CHANGELOG]
22

3-
![alt text](http://s3.amazonaws.com/creativetim_bucket/products/53/original/opt_md_angular_thumbnail.jpg "Material Dashboard Angular 2 Free")
3+
![alt text](http://s3.amazonaws.com/creativetim_bucket/products/53/original/opt_md_angular_thumbnail.jpg "Material Dashboard Angular Free")
44

5-
**[Material Dashboard Angular2](https://www.creative-tim.com/product/material-dashboard-angular2/)** is a free Material Bootstrap Admin with a fresh, new design inspired by Google's Material Design. We are very excited to introduce our take on the material concepts through an easy to use and beautiful set of components. Material Dashboard was built over the popular Bootstrap framework and it comes with a couple of third-party plugins redesigned to fit in with the rest of the elements.
5+
**[Material Dashboard Angular](https://www.creative-tim.com/product/material-dashboard-angular2/)** is a free Material Bootstrap Admin with a fresh, new design inspired by Google's Material Design. We are very excited to introduce our take on the material concepts through an easy to use and beautiful set of components. Material Dashboard was built over the popular Bootstrap framework and it comes with a couple of third-party plugins redesigned to fit in with the rest of the elements.
66

77
Material Dashboard makes use of light, surface and movement. The general layout resembles sheets of paper following multiple different layers, so that the depth and order is obvious. The navigation stays mainly on the left sidebar and the content is on the right inside the main panel.
88

@@ -28,135 +28,126 @@ You can find the Github Repo here.
2828

2929
Quick start options:
3030

31-
- [Download from Github](https://github.com/creativetimofficial/material-dashboard-angular/archive/master.zip).
31+
- [Download from Github](https://github.com/tiniestory/material-dashboard-angular/archive/master.zip).
3232
- [Download from Creative Tim](http://www.creative-tim.com/product/material-dashboard-angular2).
33-
- Clone the repo: `git clone https://github.com/creativetimofficial/material-dashboard-angular.git`.
33+
- Clone the repo: `git clone https://github.com/tiniestory/material-dashboard-angular.git`.
3434

3535
## Terminal Commands
3636

37+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.0.0 and angular 4.x.
38+
3739
1. Install NodeJs from [NodeJs Official Page](https://nodejs.org/en).
3840
2. Open Terminal
3941
3. Go to your file project
40-
4. Run in terminal: ```npm install```
41-
5. And: ```npm start```
42+
4. Make sure you have installed [Angular CLI](https://github.com/angular/angular-cli) already. If not, please install.
43+
5. Run in terminal: ```npm install```
44+
6. Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
45+
46+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).
4247

4348
### What's included
4449

4550
Within the download you'll find the following directories and files:
4651

4752
```
48-
material-dashboard-angular
49-
├── README.md
53+
md-free-angular-cli
54+
├── CHANGELOG.md
5055
├── LICENSE.md
51-
├── app
52-
│   ├── app.component.html
53-
│   ├── app.component.js
54-
│   ├── app.component.ts
55-
│   ├── app.module.js
56-
│   ├── app.module.ts
57-
│   ├── dashboard
58-
│   │   ├── dashboard.component.html
59-
│   │   ├── dashboard.component.js
60-
│   │   ├── dashboard.component.ts
61-
│   │   ├── dashboard.module.js
62-
│   │   ├── dashboard.module.ts
63-
│   │   ├── dashboard.routes.js
64-
│   │   ├── dashboard.routes.ts
65-
│   │   ├── home
66-
│   │   │   ├── home.component.html
67-
│   │   │   ├── home.component.js
68-
│   │   │   └── home.component.ts
56+
├── README.md
57+
├── angular-cli.json
58+
├── documentation
59+
├── e2e
60+
├── karma.conf.js
61+
├── package.json
62+
├── protractor.conf.js
63+
├── src
64+
│   ├── app
65+
│   │   ├── app.component.css
66+
│   │   ├── app.component.html
67+
│   │   ├── app.component.spec.ts
68+
│   │   ├── app.component.ts
69+
│   │   ├── app.module.ts
70+
│   │   ├── app.routing.ts
71+
│   │   ├── components
72+
│   │   │   ├── components.module.ts
73+
│   │   │   ├── footer
74+
│   │   │   │   ├── footer.component.css
75+
│   │   │   │   ├── footer.component.html
76+
│   │   │   │   ├── footer.component.spec.ts
77+
│   │   │   │   └── footer.component.ts
78+
│   │   │   ├── navbar
79+
│   │   │   │   ├── navbar.component.css
80+
│   │   │   │   ├── navbar.component.html
81+
│   │   │   │   ├── navbar.component.spec.ts
82+
│   │   │   │   └── navbar.component.ts
83+
│   │   │   └── sidebar
84+
│   │   │   ├── sidebar.component.css
85+
│   │   │   ├── sidebar.component.html
86+
│   │   │   ├── sidebar.component.spec.ts
87+
│   │   │   └── sidebar.component.ts
88+
│   │   ├── dashboard
89+
│   │   │   ├── dashboard.component.css
90+
│   │   │   ├── dashboard.component.html
91+
│   │   │   ├── dashboard.component.spec.ts
92+
│   │   │   └── dashboard.component.ts
6993
│   │   ├── icons
94+
│   │   │   ├── icons.component.css
7095
│   │   │   ├── icons.component.html
71-
│   │   │   ├── icons.component.js
96+
│   │   │   ├── icons.component.spec.ts
7297
│   │   │   └── icons.component.ts
7398
│   │   ├── maps
99+
│   │   │   ├── maps.component.css
74100
│   │   │   ├── maps.component.html
75-
│   │   │   ├── maps.component.js
101+
│   │   │   ├── maps.component.spec.ts
76102
│   │   │   └── maps.component.ts
77103
│   │   ├── notifications
104+
│   │   │   ├── notifications.component.css
78105
│   │   │   ├── notifications.component.html
79-
│   │   │   ├── notifications.component.js
106+
│   │   │   ├── notifications.component.spec.ts
80107
│   │   │   └── notifications.component.ts
81-
│   │   ├── table
82-
│   │   │   ├── table.component.html
83-
│   │   │   ├── table.component.js
84-
│   │   │   └── table.component.ts
108+
│   │   ├── table-list
109+
│   │   │   ├── table-list.component.css
110+
│   │   │   ├── table-list.component.html
111+
│   │   │   ├── table-list.component.spec.ts
112+
│   │   │   └── table-list.component.ts
85113
│   │   ├── typography
114+
│   │   │   ├── typography.component.css
86115
│   │   │   ├── typography.component.html
87-
│   │   │   ├── typography.component.js
116+
│   │   │   ├── typography.component.spec.ts
88117
│   │   │   └── typography.component.ts
89-
│   │   └── user
90-
│   │   ├── user.component.html
91-
│   │   ├── user.component.js
92-
│   │   └── user.component.ts
93-
│   ├── main.js
118+
│   │   ├── upgrade
119+
│   │   │   ├── upgrade.component.css
120+
│   │   │   ├── upgrade.component.html
121+
│   │   │   ├── upgrade.component.spec.ts
122+
│   │   │   └── upgrade.component.ts
123+
│   │   └── user-profile
124+
│   │   ├── user-profile.component.css
125+
│   │   ├── user-profile.component.html
126+
│   │   ├── user-profile.component.spec.ts
127+
│   │   └── user-profile.component.ts
128+
│   ├── assets
129+
│   │   ├── css
130+
│   │   ├── img
131+
│   │   ├── js
132+
│   │   │   └── material.min.js
133+
│   │   └── sass
134+
│   │   ├── material-dashboard.scss
135+
│   │   └── md
136+
│   ├── environments
137+
│   ├── favicon.ico
138+
│   ├── index.html
94139
│   ├── main.ts
95-
│   ├── shared
96-
│   │   ├── footer
97-
│   │   │   ├── footer.component.html
98-
│   │   │   ├── footer.component.js
99-
│   │   │   ├── footer.component.ts
100-
│   │   │   ├── footer.module.js
101-
│   │   │   └── footer.module.ts
102-
│   │   └── navbar
103-
│   │   ├── navbar.component.html
104-
│   │   ├── navbar.component.js
105-
│   │   ├── navbar.component.ts
106-
│   │   ├── navbar.module.js
107-
│   │   └── navbar.module.ts
108-
│   └── sidebar
109-
│   ├── sidebar-routes.config.js
110-
│   ├── sidebar-routes.config.ts
111-
│   ├── sidebar.component.html
112-
│   ├── sidebar.component.js
113-
│   ├── sidebar.component.ts
114-
│   ├── sidebar.metadata.js
115-
│   ├── sidebar.metadata.ts
116-
│   ├── sidebar.module.js
117-
│   └── sidebar.module.ts
118-
├── assets
119-
│   ├── css
120-
│   ├── img
121-
│   │   └── faces
122-
│   ├── js
123-
│   │   ├── bootstrap-notify.js
124-
│   │   ├── bootstrap.min.js
125-
│   │   ├── chartist.min.js
126-
│   │   ├── charts.d.ts
127-
│   │   ├── charts.js
128-
│   │   ├── demo.js
129-
│   │   ├── initMenu.js
130-
│   │   ├── jquery-3.1.0.min.js
131-
│   │   ├── sidebar-moving-tab.js
132-
│   │   ├── material-dashboard.js
133-
│   │   └── material.min.js
134-
│   └── sass
135-
│   └── material-dashboard.scss
136-
├── documentation
137-
│   ├── css
138-
│   └── tutorial-components.html
139-
├── changelog.txt
140-
├── index.html
141-
├── package.json
142-
├── systemjs.config.js
143-
└── tsconfig.json
140+
│   ├── polyfills.ts
141+
│   ├── styles.css
142+
│   ├── test.ts
143+
│   ├── tsconfig.app.json
144+
│   ├── tsconfig.spec.json
145+
│   └── typings.d.ts
146+
├── tsconfig.json
147+
├── tslint.json
148+
└── typings
144149
145150
```
146-
### Version logs
147-
148-
V1.0.0 - 30 Jan 2017 [initial Release]
149-
150-
V1.1.0 - small fix
151-
152-
V1.1.1 - 21 March (V1.1.0 from Material Dashboard HTML)
153-
- added "@types/core-js": "0.9.35" in package
154-
155-
V1.2.0 - 05 Apr (V1.1.0 from Material Dashboard HTML)
156-
- added Upgrade to PRO page
157-
- update package
158-
- made sidebar dynamic
159-
160151

161152
## Useful Links
162153

@@ -179,3 +170,7 @@ Dribbble: <https://dribbble.com/creativetim>
179170
Google+: <https://plus.google.com/+CreativetimPage>
180171

181172
Instagram: <https://instagram.com/creativetimofficial>
173+
174+
[CHANGELOG]: ./CHANGELOG.md
175+
176+
[version-badge]: https://img.shields.io/badge/version-1.4.0-blue.svg

angular-cli.json

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"project": {
4+
"name": "material-dashboard-angular"
5+
},
6+
"apps": [
7+
{
8+
"root": "src",
9+
"outDir": "dist",
10+
"assets": [
11+
"assets",
12+
"favicon.ico"
13+
],
14+
"index": "index.html",
15+
"main": "main.ts",
16+
"polyfills": "polyfills.ts",
17+
"test": "test.ts",
18+
"tsconfig": "tsconfig.app.json",
19+
"testTsconfig": "tsconfig.spec.json",
20+
"prefix": "app",
21+
"styles": [
22+
"./assets/sass/material-dashboard.scss"
23+
],
24+
"scripts": [
25+
"../node_modules/jquery/dist/jquery.js",
26+
"../node_modules/bootstrap/dist/js/bootstrap.js",
27+
"../src/assets/js/material.min.js",
28+
"../node_modules/arrive/src/arrive.js",
29+
"../node_modules/moment/moment.js",
30+
"../node_modules/bootstrap-notify/bootstrap-notify.js",
31+
"../node_modules/chartist/dist/chartist.js"
32+
],
33+
"environmentSource": "environments/environment.ts",
34+
"environments": {
35+
"dev": "environments/environment.ts",
36+
"prod": "environments/environment.prod.ts"
37+
}
38+
}
39+
],
40+
"e2e": {
41+
"protractor": {
42+
"config": "./protractor.conf.js"
43+
}
44+
},
45+
"lint": [
46+
{
47+
"project": "src/tsconfig.app.json"
48+
},
49+
{
50+
"project": "src/tsconfig.spec.json"
51+
},
52+
{
53+
"project": "e2e/tsconfig.e2e.json"
54+
}
55+
],
56+
"test": {
57+
"karma": {
58+
"config": "./karma.conf.js"
59+
}
60+
},
61+
"defaults": {
62+
"styleExt": "scss",
63+
"component": {}
64+
}
65+
}

app/app.component.js

Lines changed: 0 additions & 42 deletions
This file was deleted.

app/app.component.js.map

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)