Frontend for Taskbook application. Developed by Damian Malczewski as a project at Cracow University of Technology in 2019.
Afterwards it served the purpose of testing Angular updates.
Building Docker automatically builds Angular distribution in a multi-stage build.
$ docker build -t taskbook-frontend:latest .
Running locally requires to taskbook
application (along with its own dependencies) to be up and
running. Angular development server launches a reverse-proxy for /api
paths. Follow
backend instructions to launch it.
To run Angular development server use start
npm task.
$ npm start
The application will be available on http://localhost:4200
.
Note, that as a Docker service, the application works as a nginx server, available on
port :80
.
taskbook
, which holds backend application.taskbook-frontend
, which holds frontend application.