Web application using AngularJS and Angular Material to visually interact with the Identity.
Interacts with Identity API.
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
- Table of Contents
- About The Project
- Getting Started
- Documentation
- Usage
- Roadmap
- Contributing
- License
- Contact
- Acknowledgements
Web application using AngularJS and Angular Material to visually interact with the Identity.
Interacts with Identity API.
To get a local copy up and running follow these simple steps.
This is an example of how to list things you need to use the software and how to install them.
- Get into EOEPCA's development environment
vagrant ssh- Clone the repo
git clone https://github.com/EOEPCA/eoepca-portalgit- Change local directory
cd eoepca-portal- Run development server
npm install
ng serveNavigate to http://localhost:4200/. The application will automatically reload if you change any of the source files.
To generate a new componente:
ng generate component component-nameYou can also use ng generate directive|pipe|service|class|guard|interface|enum|module.
Build the project with:
npm install
ng buildThe build artifacts will be stored in the dist/ directory.
Build the production Docker image with:
ng build --configuration=production
docker build . -f Dockerfile.production -t eoepca-portalRun with:
docker run --rm -dp 4200:80 --name eoepca-portal --network eoepcanetwork eoepca-portalExecute unit tests via Karma:
ng testExecute end-to-end tests via a platform of your choice:
ng e2eTo use this command, you need to first add a package that implements end-to-end testing capabilities.
Local develop
docker build . --progress=plain -t eoepca-portal:develop
docker run --rm -dp 4200:4200 --name eoepca-portal --network eoepcanetwork eoepca-portal:developLocal Production
docker build . -f Dockerfile.production --progress=plain -t eoepca-portal:production
docker run --rm -dp 4200:8080 --name eoepca-portal --network eoepcanetwork eoepca-portal:productionRemote develop
docker run --rm -dp 4200:4200 --name eoepca-portal --network eoepcanetwork ghcr.io/eoepca/eoepca-portal:developRemote Production
docker run --rm -dp 4200:8080 --name eoepca-portal --network eoepcanetwork ghcr.io/eoepca/eoepca-portal:masterPortal is available at localhost:4200.
To get more help on the Angular CLI use ng help or go check out the Angular CLI Overview and Command Reference page.
The component documentation can be found at https://eoepca.github.io/eoepca-portal/.
Use this space to show useful examples of how a project can be used. Additional screenshots, code examples and demos work well in this space. You may also link to more resources.
For more examples, please refer to the Documentation
See the open issues for a list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Distributed under the Apache-2.0 License. See LICENSE for more information.
Project Link: https://github.com/EOEPCA/eoepca-portal
- README.md is based on this template by Othneil Drew.