Project-Clara is a simple appointment, feedback and survey application.
This project follows the angular commit-message convention.
This project follows the Semantic Versioning 2.0.0 specification.
git clone [email protected]:project-clara/project-clara.git
cd project-clara/project-clara-client
# install the project's dependencies
npm install
# watches your files and uses livereload by default
ng serve
# dev build
ng build
# prod build
ng build --prod
- Introduction
- Commit Message Format
- Versioning
- How to start the client
- Table of Content
- Dockerization
The application provides full Docker support. You can use it for both development as well as production builds and deployments.
The Dockerization infrastructure is described in the docker-compose.yml
(respectively docker-compose.production.yml
.
The application consists of two containers:
project-clara-angular
- In development mode, this container serves the angular app. In production mode it builds the angular app, with the build artifacts being served by the Nginx containerproject-clara-nginx
- This container is used only production mode. It serves the built angular app with Nginx.
Run the following:
$ docker-compose build
$ docker-compose up -d
Now open your browser at http://localhost:9080
Run the following:
$ docker-compose -f docker-compose.production.yml build
$ docker-compose -f docker-compose.production.yml up project-clara-angular # Wait until this container has finished building, as the nginx container is dependent on the production build artifacts
$ docker-compose -f docker-compose.production.yml up -d project-clara-nginx # Start the nginx container in detached mode
Now open your browser at http://localhost:8080