Task Manager is a task management system similar to http://www.redmine.org/. It allows you to set tasks, assign performers and change their statuses. To work with the system, registration and authentication are required.
https://task-manager-1pm0.onrender.com
- python3
- python-dotenv
- django 4
- dj-database-url
- psycopg2-binary
- gunicorn
- whitenoise
- django-bootstrap5
- django-filter
- rollbar
- poetry
- Clone repository:
git clone [email protected]:yudzhum/task-manager.git
cd task-manager
- Create enviroment, insall dependencies:
make install
- Create a new PostgreSQL database
createdb dbname
- Create
.env
file for enviromental variables storage - Add database credentials to go in your project’s settings.py
- Generate a new secret key
- Make migrations
make migrate
- Create a new superuser (not strict order)
- Start the development server
make start