Skip to content
This repository has been archived by the owner on Sep 30, 2021. It is now read-only.
/ taskbook-frontend Public archive

Simple application for tasks management, developed at college

Notifications You must be signed in to change notification settings

malczuuu/taskbook-frontend

Repository files navigation

Taskbook Frontend

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.

Table of Contents

Building Docker image

Building Docker automatically builds Angular distribution in a multi-stage build.

$ docker build -t taskbook-frontend:latest .

Running on local machine

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.

Project repositories