{"id":48483333,"url":"https://github.com/andrey-oss/task_management_system","last_synced_at":"2026-04-07T09:01:41.374Z","repository":{"id":304647820,"uuid":"1019445201","full_name":"Andrey-oss/task_management_system","owner":"Andrey-oss","description":"Task management system - Simple ecosystem for task managing from the web written on python3!","archived":false,"fork":false,"pushed_at":"2025-07-27T14:18:22.000Z","size":39,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-27T16:29:23.106Z","etag":null,"topics":["aes","crud","cryptography","database","django","free","management","manager","task"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Andrey-oss.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-14T10:35:43.000Z","updated_at":"2025-07-27T14:18:25.000Z","dependencies_parsed_at":"2025-07-14T13:56:46.083Z","dependency_job_id":"4c12fd25-6bb2-4bc3-b7e1-572185fc918f","html_url":"https://github.com/Andrey-oss/task_management_system","commit_stats":null,"previous_names":["andrey-oss/task_management_system"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Andrey-oss/task_management_system","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andrey-oss%2Ftask_management_system","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andrey-oss%2Ftask_management_system/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andrey-oss%2Ftask_management_system/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andrey-oss%2Ftask_management_system/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Andrey-oss","download_url":"https://codeload.github.com/Andrey-oss/task_management_system/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Andrey-oss%2Ftask_management_system/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31506578,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T03:10:19.677Z","status":"ssl_error","status_checked_at":"2026-04-07T03:10:13.982Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aes","crud","cryptography","database","django","free","management","manager","task"],"created_at":"2026-04-07T09:01:37.497Z","updated_at":"2026-04-07T09:01:41.369Z","avatar_url":"https://github.com/Andrey-oss.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Task management system\n\nTask management system is a personal task-tracking web application built with Django. It allows users to create, view, update, and delete tasks with additional functionality such as encryption, image upload, deadline management, and user authentication\n\n## 🔧 Features\n\n- 📝 Create, edit, and delete tasks\n- 🔐 Optional encryption for task content with a password\n- 🖼️ Image upload support (e.g., task-related screenshots)\n- 🗓️ Deadlines with calendar input\n- ✅ Status and category selection\n- 🔎 Filtering and sorting options\n- 👤 User registration, login, and protected routes\n- 🧩 Admin interface for profile access\n- ⚙️ Some permission features (superuser can edit or read tasks from any user directly from website page, not from admin panel)\n- 🌐 DRF / REST API\n- 📄 Swagger support (but raw)\n- 📋 Test support (for Models/API/self-written library)\n\n## ⚙️ Technologies Used\n\n- Django (CBV-based views)\n- Bootstrap 5/Animate.css for responsive UI\n- Custom templates with animations\n- SQLite support\n- Python Cryptography library for encryption (currently AES)\n- Hashing password support (currently SHA256)\n- Django Rest Framework with Swagger\n- Unittest as a framework for testing\n\n## 🚫 Not Included (WIP)\n\nThis project does **not yet include**:\n- Django Signals\n- Custom context processors\n- matplotlib or statistical dashboards\n- Advanced permissions system\n- JWT/TokenAuth (soon it will be possible)\n\n## ▶️ Getting Started\n\n1. Clone the repo:\n```bash\ngit clone https://github.com/Andrey-oss/task_management_system.git\ncd task_management_system\n```\n\n2. Create a virtual environment and install requirements:\n```bash\nbash init_venv.sh\n```\n\n3. Apply migrations and run server:\n```bash\npython manage.py migrate\npython manage.py runserver\n```\n\n4. Visit [http://localhost:8000](http://localhost:8000)\n\n## 🐳 Launch by Docker\n\n1. Start the service:\n```bash\nsystemctl start docker\n```\n\n2. Initialize container:\n```bash\ndocker build -t tms-app .\n```\n\n3. Run the app:\n```bash\ndocker run -p 8000:8000 tms-app\n```\n\n## 📁 Folder Structure\n\n- `index/` - index pages (about, index)\n- `accounts/` – user authentication and profile views\n- `tms/` – main app logic (models, views, templates)\n- `templates/` – custom templates (Bootstrap 5)\n- `static/` – static files (CSS, JS, images)\n- `media/` - media files (userspace dir)\n- `crypter/` - crypter module (for enc/decryption tasks)\n- `api/` - API section\n\n## 🔒 Encryption\n\nTask content can be encrypted with a custom password. AES (CBC) with PKCS7 padding and base64 encoding is used under the hood via the `cryptography` library\n\nAlso this app supports password hashing for better security. Uses SHA256 + PBKDF2 and base64 encoding/decoding with salt randomization, like a task encrypter \n\n## 💡 Future Plans\n\n- Statistical dashboard with matplotlib\n- Task sharing between users\n- Signals and better permission logic\n- Add JWT/TokenAuth\n\n---\n\n## Contributing\nFeel free to fork this repository and submit pull requests for improvements\n\n## License\nThis project is licensed under the MIT License. See [LICENSE](LICENSE) for details\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrey-oss%2Ftask_management_system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandrey-oss%2Ftask_management_system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandrey-oss%2Ftask_management_system/lists"}