Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/rafaelcamargo/ng-rise
- Owner: rafaelcamargo
- License: mit
- Created: 2015-03-04T04:17:56.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-08-06T21:02:12.000Z (over 6 years ago)
- Last Synced: 2023-02-27T12:32:50.260Z (over 1 year ago)
- Topics: angularjs, component-based, javascript, single-page-app
- Language: JavaScript
- Homepage: https://angular-rise.firebaseapp.com
- Size: 325 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```