- Install docker if not installed as instructed on link https://docs.docker.com/get-docker/
- Install docker compose if not installed as instructed on link https://docs.docker.com/compose/install/
- With Docker Compose
docker-compose up
This will run the backend, frontend and database containers.
Now Goto browser and open below link for Angular Application http://0.0.0.0:40000
Open Below link for backend swagger documentation http://0.0.0.0:50003/documentation
- Without Docker Compose (Running Individually)
cd backend/
export NODE_ENV=env-local
cd ../frontend/
ng serve
Now Goto browser and open below link for Angular Application http://0.0.0.0:4200
Open Below link for backend swagger documentation http://0.0.0.0:50000/documentation
- Backend
- NodeJS
- Hapi
- Database
- MongoDB
- Frontend
- Angular