Skip to content

Latest commit

 

History

History
45 lines (27 loc) · 701 Bytes

README.md

File metadata and controls

45 lines (27 loc) · 701 Bytes

Quickstart (using docker-compose)

docker-compose up --build or make docker-build

The app will be running at http://localhost/

Slowstart (manual installation without docker)

Requirements

Development installation

Clone repository:

  git clone --recurse-submodules https://github.com/dwt/task-tracker
  cd task-tracker

Create virtual env:

  pyvenv .
  source bin/activate

Install poetry python installer:

    bin/pip install -r requirements.txt

Install python and javascript dependencies

   poetry install
   yarn install