An open API service indexing awesome lists of open source software.

https://github.com/twanoo67/bootstraping-ngx-admin-lte

Angular2,4,6 project with AdminLTE dashboard template (using angular, angular-cli and ngx-admin-lte ) Formerly called 'ng2-admin-lte'.
https://github.com/twanoo67/bootstraping-ngx-admin-lte

admin-dashboard admin-lte adminlte-dashboard-template angular angular-2 angular2 angular4 bootstrap ngx-admin-lte

Last synced: over 1 year ago
JSON representation

Angular2,4,6 project with AdminLTE dashboard template (using angular, angular-cli and ngx-admin-lte ) Formerly called 'ng2-admin-lte'.

Awesome Lists containing this project

README

          

# bootstraping ngx-admin-lte

[![Join the chat at https://gitter.im/TwanoO67/ng2-admin-lte](https://badges.gitter.im/TwanoO67/ng2-admin-lte.svg)](https://gitter.im/TwanoO67/ng2-admin-lte?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Build Status](https://travis-ci.org/TwanoO67/ng2-admin-lte.svg?branch=master)](https://travis-ci.org/TwanoO67/ng2-admin-lte)

Bootstraping of Angular4 with AdminLTE dashboard template
( Using ngx-admin-lte Library)

![Preview](https://almsaeedstudio.com/img/AdminLTE2.1.png)

## UPDATE !

This version use the new npm package ngx-admin-lte (this will be easier to update)
If your are looking for the old version for angular check the "angular2" branch.

There's now two different repo:
* [bootstraping-ngx-admin-lte](https://github.com/TwanoO67/bootstraping-ngx-admin-lte) For those who want the full bootstraping
* [ngx-admin-lte](https://github.com/TwanoO67/ngx-admin-lte) For whom want to install via npm in a existing project

## Support
Hey dude! Help me out for a couple of :beers:!

[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donate_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=ghostsmaker@hotmail.com&lc=US&item_name=TwanoO67&item_number=ng2-admin-lte&no_note=0&currency_code=EUR)

## Launching with docker

```
./bin/start.sh
```

## Building with docker

```
./bin/prod.sh
```

## Lauching with node > 7 locally installed

```
npm install -g yarn
yarn
yarn start
```

## Developpement

For the feature on the Admin_LTE template, see the readme of this repo:
[https://github.com/TwanoO67/ngx-admin-lte](https://github.com/TwanoO67/ngx-admin-lte)

Adding a component

```
cd src/app/widgets/
yarn ng g component my-new-widget
```

Adding a page

```
cd src/app/pages/
yarn ng g component my-new-page
```

Adding a service

```
cd src/app/services/
yarn ng g service my-new-service
```