Skip to content

Commit 7c4dd2d

Browse files
committed
docs: update README.md
1 parent 51178a1 commit 7c4dd2d

File tree

1 file changed

+16
-9
lines changed

1 file changed

+16
-9
lines changed

README.md

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@ The steps below will take you through cloning your own fork, installing dependen
2020
git clone https://github.com/CreativeIT/material-angular-dashboard.git
2121
```
2222

23-
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):
2424

2525
```bash
26-
yarn install
26+
npm install
2727
```
2828

2929
3. Install [angular-cli](https://cli.angular.io/) globally to use its commands in the terminal:
3030

3131
```bash
32-
yarn global add @angular/cli
32+
npm install --global @angular/cli
3333
```
3434

3535
4. Now you are able to run or build the project:
3636

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.
3838

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.
4040

4141
# FEATURES
4242

@@ -54,21 +54,28 @@ Run `yarn run build` or `ng build` to build the project. The build artifacts wil
5454

5555
* [D3](https://d3js.org/) and [NVD3](http://nvd3.org/)
5656

57+
* [ag-Grid](https://www.ag-grid.com)
58+
59+
* [material-angular-select](https://github.com/CreativeIT/material-angular-select)
60+
5761
* MIT License
5862

5963
# Additional
6064

6165
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.
6266

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.
6468

6569
# Quick start
6670
Do you want to start quickly and don't need all the pages and modules? You can checkout to empty
6771
[starter-kit branch](https://github.com/CreativeIT/material-angular-dashboard/tree/starter-kit) and get to work!
6872

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.
7279

7380
# Hire us
7481

0 commit comments

Comments
 (0)