Task Manager is a flexible web application for creating and tracking tasks. The service requires user registration and authorization. The functionality allows you to create and view tasks yourself, assign an executor from existing users, add various statuses /labels for tasks.
- python = "^3.10"
- poetry = "^version 1.6.1"
Environment variables for application deployment:
- SECRET_KEY(django application key)
- DATABASE_URL(postgresql url)
- DEBUG(For deploy = Flase, for dev = True)
- ROLLBAR_ACCESS_TOKEN(Roll bar token for real-time error tracking on the service rollbar.com)
- Documentation for deployment on the service render.com: https://docs.render.com/deploy-django
git clone [email protected]:thiSSSnake/python-project-52.git
cd python-project-52/
# install poetry
make install
# start server locally
make start