Administration application for the BookDash NPO mobile apps.
- Make sure you have a recent version of node.js installed. We prefer to use nvm to manage node versions which can be installed via curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.31.0/install.sh | bash
- Install the latest version of node.js...nvm install v5.11.1
- Swith to this version of node via nvm use v5.11.1
- In the root directory install all of the modules via "npm install"
- If you have the angular-cli installed uninstall is in the version of node via "npm uninstall -g angular-cli"
- Install the angular-cli node package via "npm install -g angular-cli@1.0.0-beta.8"
- Install typings via "npm install typings@0.7.12 -g"
- now install the project specific typings via "typings install --save --ambient firebase"
- do the same for jasmine typings via "typings install jasmine --save-dev --ambient"
- now start up the server with "ng serve"
If you would like to contribute to this project please reach out to us. We would love to have the help.
Given the fact that the team was new to Angular 2 and it is only used by a small number of people we opted to not add automated tests to it at this time. This is something that we would love to layer in as more functionality is added and we are more comfortable with the framework. This is also an area that would be a great way to get involved in the project and help to bring us along with our Angular2/Typescript TDD foo.
This project was generated with angular-cli version 1.0.0-beta.8.
Run ng serve
for a dev server. Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
Run ng generate component component-name
to generate a new component. You can also use ng generate directive/pipe/service/route/class
.
Run ng build
to build the project. The build artifacts will be stored in the dist/
directory. Use the -prod
flag for a production build.
Run ng test
to execute the unit tests via Karma.
Run ng e2e
to execute the end-to-end tests via Protractor.
Before running the tests make sure you are serving the app via ng serve
.
If you want to deploy from your machine to Firebase Hosting, make sure you have the Firebase command line tools installed:
npm install -g firebase-tools
Then run :
firebase login
then:
firebase deploy
(it will then ask what project you want to deploy it to and deploy the site).
Run ng github-pages:deploy
to deploy to Github Pages.
To get more help on the angular-cli
use ng --help
or go check out the Angular-CLI README.