Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 786 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 786 Bytes

Angular

Angular frontend depends on NestJs-sequelize backend to be up and running.

Angular frontend will be running at port 4200 of your localhost.

XHR requests are made through a proxy configuration to http://localhost:3000/api/ and http://localhost:3000/auth.

 

Installation

$ npm install

 

Running with local-dev

Start the application

$ npm start
# visit http://localhost:4200/products

 

Running with local-full

Docker build

$ npm run build # creates `dist` assets and artifacts
$ docker build -t products-frontend .