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: about 1 month 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 11 years ago)
- Default Branch: master
- Last Pushed: 2018-08-06T21:02:12.000Z (almost 8 years ago)
- Last Synced: 2025-04-10T19:34:46.917Z (about 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: 1
- 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.
[](https://circleci.com/gh/rafaelcamargo/ng-rise)
[](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 git@github.com: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
```