Simple task management system. It allows you to set tasks with tags, assign performers and change their statuses. This app can be found here: Task Manager
- make
- poetry
- docker(optional)
- Clone repository
git clone https://github.com/RamiGaggi/edu-task-manager.git
- Go to working directory
cd edu-task-manager
- Set up environment variables in .env
- DB_ENGINE (defaults to SQLite), set another db engine this way, for example postgres
postgres://user:password@host:port/db_name
- SECRET_KEY, for generation you can use
make secret-key
- DB_ENGINE (defaults to SQLite), set another db engine this way, for example postgres
- Install dependencies
make install
or for Dockerdocker-compose build
- Сomplete setup
make setup
or for Dockerdocker-compose run --rm django make setup
make runserver
docker-compose up