Try out the online version here: https://dashboard.ohsome.org/
This project was generated with Angular CLI version 15.2.0.
Use node v18+
The following steps describe possible setups using npm
.
If you only want to change things in the dashboard
code:
export DASHBOARD_FOLDER=$(pwd)/ohsome-dashboard # modify to your desired dashboard source folder
git clone ssh://[email protected]:GIScience/ohsome-dashboard.git $DASHBOARD_FOLDER
# eventually switch to a development branch
npm install
npm start
If you need to make changes in dashboard code and ohsome-js-utils at the same time:
export DASHBOARD_FOLDER=$(pwd)/ohsome-dashboard # modify to your desired dashboard source folder
export OHSOME_UTILS_FOLDER=$(pwd)/ohsome-js-utils # modify to your desired ohsome-js-utils source folder
git clone ssh://[email protected]:GIScience/ohsome-dashboard.git $DASHBOARD_FOLDER
git clone ssh://[email protected]:GIScience/ohsome-js-utils.git $OHSOME_UTILS_FOLDER
cd $OHSOME_UTILS_FOLDER/dist
npm link
cd $DASHBOARD_FOLDER
# eventually switch to a development branch
npm install
npm link "@giscience/ohsome-js-utils"
npm start
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|class|guard|interface|enum|module
.
Run ng build
to build the project. The build artifacts will be stored in the dist/
directory. Use the --prod --env=prod
flag for a production build.
We are using eslint
. To configure rules change .eslintrc.json
.
Run ng lint
to find out about code style problems.
Run ng test
to execute the unit tests via Karma.
Run ng e2e
to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
Run ng e2e
to choose an e2e platform that angular will install for you.
To get more help on the Angular CLI use ng help
or go check out the Angular CLI README.