Skip to content

Latest commit

 

History

History
42 lines (35 loc) · 1.18 KB

README.md

File metadata and controls

42 lines (35 loc) · 1.18 KB

task-manager

CI Maintainability Test Coverage

Web app for managing tasks between people. Created with Django and PostgreSQL.

https://empty-task-manager.herokuapp.com/

Dependencies:

  • python = "^3.10"
  • Django = "^4.0.4"
  • gunicorn = "^20.1.0"
  • python-dotenv = "^0.20.0"
  • psycopg2-binary = "^2.9.3"
  • django-bootstrap4 = "^22.1"
  • django-filter = "^22.1"
  • rollbar = "^0.16.3"

Installation:

via poetry:

  • clone repo:
git clone https://github.com/emp7yhead/python-project-lvl4
cd python-project-lvl4
  • install dependencies:
make install
  • set the values of the environment variables in the .env file.
  • initialize migrations:
make migrate
  • run app:
make start