Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/rafaelcamargo/ng-rise

Angular Rise is a starter kit for AngularJS applications structured on a component based architecture
https://github.com/rafaelcamargo/ng-rise

angularjs component-based javascript single-page-app

Last synced: 10 days ago
JSON representation

Angular Rise is a starter kit for AngularJS applications structured on a component based architecture

Awesome Lists containing this project

README

        

# Angular Rise
Angular Rise is a starter kit for AngularJS applications structured on a component based architecture.

[![CircleCI](https://circleci.com/gh/rafaelcamargo/ng-rise.svg?style=svg)](https://circleci.com/gh/rafaelcamargo/ng-rise)
[![codecov](https://codecov.io/gh/rafaelcamargo/ng-rise/branch/master/graph/badge.svg)](https://codecov.io/gh/rafaelcamargo/ng-rise)

## Contributing

1. Install [Node](https://nodejs.org/en/). Download the "Recommend for Most Users" version.

2. Clone the repo:
``` bash
git clone [email protected]:rafaelcamargo/ng-rise.git
```

3. Go to the project directory
``` bash
cd ng-rise
```

4. Install the project dependencies
``` bash
npm install
```

5. If you want just build the project, run:
``` bash
npm run build
```

6. Otherwise, run:
``` bash
npm run start
```

The app will be running on `http://localhost:4000` and the browser will automatically reload with the changes you make in any source file.

## Tests

1. Ensure that all code that you have added is covered with unit tests:
``` bash
npm run test
```