The project is a momorepo based project. By now there are two main projects:
- Explorer
- Wallet
Before getting started you would need:
git
installed locally in your computernpm
installed locally in your computer. It can be done with thisnpm install npm@latest -g
. Check npm documentation- Make sure that you have Node 10.9 or later installed. See instructions here. The Angular CLI requires Node 8, but development requires Node 10.
- Install Angular CLI. It can be done with
npm install -g @angular/cli
. The Angular CLI is a command-line interface tool that you use to initialize, develop, scaffold, and maintain Angular applications. You can use the tool directly in a command shell, or indirectly through an interactive UI such as Angular Console. Angular CLI reference
To get started locally, follow these instructions: If you haven't done it already, make a fork of this repo.
- Clone to your local computer using
git
. - Make sure that you have Node 10.9 or later installed. See instructions here. The Angular CLI requires Node 8, but development requires Node 10.
- Enter project main directory and install npm modules (dependecies):
npm install
.
- If you want to run
explorer
project, you need to useng serve explorer
. - If you want to run
wallet
project, you need to useng serve wallet
. - Running
ng serve
will deploy the angular cli default for a dev server. Navigate tohttp://localhost:4200/
. The app will automatically reload if you change any of the source files.
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
.