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
2. Open your copied repo folder in terminal and install necessary modules with command, make sure that you have installed [yarn](https://yarnpkg.com/en/docs/install):
23
+
2. Open your copied repo folder in terminal and install necessary modules with command, make sure that you have installed [npm](https://www.npmjs.com/get-npm):
24
24
25
25
```bash
26
-
yarn install
26
+
npm install
27
27
```
28
28
29
29
3. Install [angular-cli](https://cli.angular.io/) globally to use its commands in the terminal:
30
30
31
31
```bash
32
-
yarn global add @angular/cli
32
+
npm install --global @angular/cli
33
33
```
34
34
35
35
4. Now you are able to run or build the project:
36
36
37
-
Run `yarn start` or `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
37
+
Run `npm start` or `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
38
38
39
-
Run `yarn run build` or `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
39
+
Run `npm run build` or `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
40
40
41
41
# FEATURES
42
42
@@ -54,21 +54,28 @@ Run `yarn run build` or `ng build` to build the project. The build artifacts wil
54
54
55
55
*[D3](https://d3js.org/) and [NVD3](http://nvd3.org/)
Since the project uses [BEM](http://getbem.com) structure with sass, it can be customized in an easy way by editing `src/theme/scss/_variables.scss` file.
62
66
63
-
Project uses [d3](https://d3js.org/) and [nvd3](http://nvd3.org/) to build charts and chart components.
67
+
Project uses [d3](https://d3js.org/) and [nvd3](http://nvd3.org/) to build charts and chart components and [ag-Grid](https://www.ag-grid.com) to build advanced tables.
64
68
65
69
# Quick start
66
70
Do you want to start quickly and don't need all the pages and modules? You can checkout to empty
67
71
[starter-kit branch](https://github.com/CreativeIT/material-angular-dashboard/tree/starter-kit) and get to work!
68
72
69
-
If you need full-stack solution with authentication ability, checkout
70
-
[feature/auth](https://github.com/CreativeIT/material-angular-dashboard/tree/feature/auth) branch with preconfigured Node.js backend.
71
-
You can also try the [demo](http://dashboard-auth-demo.creativeit.io).
73
+
If you need full-stack solution with authentication ability and routing, checkout
74
+
[feature/backend branch](https://github.com/CreativeIT/material-angular-dashboard/tree/feature/backend) with preconfigured Node.js backend.
75
+
You can also try the [demo](http://dashboard-auth-demo.creativeit.io) (user: admin@admin.admin , password: admin).
76
+
77
+
You can also try dashboard powered with [AWS Lambda](https://aws.amazon.com/lambda/). This allows you to easily deploy your application without the need for a dedicated server.
78
+
Checkout [feature/serverless branch](https://github.com/CreativeIT/material-angular-dashboard/tree/feature/serverless) to see the details or try the [demo](https://g5ope910kg.execute-api.eu-central-1.amazonaws.com/production/) (user: admin@admin.admin , password: admin) to make sure that this is no different from the classic approach.
0 commit comments