This web application acts as the frontend to Prox.
This project was generated with Angular CLI version 7.2.3.
To use the backend from *.aws.innovation-hub.de
# Execute from the project root folder
docker build -t prox-web-client:prod -f ./docker/Dockerfile .
To use the local/dev services from localhost
# Execute from the project root folder
docker build -t prox-web:dev -f ./docker/Dockerfile-local .
Run with:
docker compose -f docker/docker-compose.yml up -d
Builds a Docker image based on the source code and the dependencies in the package.json
and package-lock.json
.
Run ng serve -c local
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
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.
To get more help on the Angular CLI use ng help
or go check out the
Angular CLI README.
Please consider our contributing guidelines.
The commit messages SHOULD adhere to the Conventional Commits specification. This repository is also Commitizen-friendly. You can use Commitizen seamless in this repository.
In general releases are done by pushing a git tag which conforms to SemVer specification. We prefix those tags with a
v
, so the tag itself MUST follow the pattern vMAJOR.MINOR.PATCH
. A label is not used.
The simplest way to perform a release is by relying on our standard-version configuration. If you are ready to perform a release simply call
$ npx standard-version
# or
$ npm run release
This will analyze the last commits since the last release, determine the new version, generate a changelog and create a git tag for you. Next up you will need to push the tag and version bumped files, our release pipeline will take care of the rest.
$ git push --follow-tags origin main