{"id":24362153,"url":"https://github.com/rishabhmohan13/task-horizon","last_synced_at":"2026-05-09T07:31:57.829Z","repository":{"id":272129349,"uuid":"915602779","full_name":"Rishabhmohan13/task-horizon","owner":"Rishabhmohan13","description":"Task Horizon is a powerful task management system built with Django and PostgreSQL, designed to simplify workflow organization and enhance productivity for individuals and teams.","archived":false,"fork":false,"pushed_at":"2025-01-12T10:43:21.000Z","size":303,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-12T09:16:08.827Z","etag":null,"topics":["django","postgresql","task-management-system"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Rishabhmohan13.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2025-01-12T10:05:50.000Z","updated_at":"2025-01-12T10:44:53.000Z","dependencies_parsed_at":"2025-01-12T11:30:28.797Z","dependency_job_id":"7ecc59a3-3e40-4421-817b-a1b6f4b5989e","html_url":"https://github.com/Rishabhmohan13/task-horizon","commit_stats":null,"previous_names":["rishabhmohan13/task-horizon"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rishabhmohan13%2Ftask-horizon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rishabhmohan13%2Ftask-horizon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rishabhmohan13%2Ftask-horizon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Rishabhmohan13%2Ftask-horizon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Rishabhmohan13","download_url":"https://codeload.github.com/Rishabhmohan13/task-horizon/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243188237,"owners_count":20250457,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["django","postgresql","task-management-system"],"created_at":"2025-01-18T22:49:49.679Z","updated_at":"2025-12-26T07:35:43.526Z","avatar_url":"https://github.com/Rishabhmohan13.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Task Horizon\n\n**Task Horizon** is a powerful task management system built with Django and PostgreSQL, designed to simplify workflow organization and enhance productivity for individuals and teams. **Task Horizon** streamlines task tracking, boosts collaboration, and keeps projects on schedule with a user-friendly interface and scalable design.\n\n## Key Features:\n\n- **User Management:** Secure authentication with role-based access control.\n- **Task Management:** Create, assign, and prioritize tasks with deadlines and tags.\n- **Collaboration Tools:** Task comments, file attachments, and real-time updates.\n- **Notifications \u0026 Reminders:** Timely alerts for task deadlines and updates.\n- **Reporting \u0026 Analytics:** Generate performance and progress reports.\n- **Advanced Search:** Filter tasks by keywords, tags, and status.\n\n## Tech Stack\n\n- **Frontend:** HTML5, CSS3, Bootstrap5, JavaScript\n- **Backend:** Python=3.11.4, Django=4.2.5\n- **Database:** PostgreSQL (can be hosted on Render for Production)\n- **Operating System:** Ubuntu 24.04 LTS (WSL)\n\n## Installation (Running locally)\n\n1. Clone the repository\n\n    ```\n    git clone https://github.com/Rishabhmohan13/task-horizon.git \n    ```\n1. Install dependencies \n\n    - Python 3.11\n    - pip\n    - venv\n    - postgresql\n\n    ```\n    sudo apt install python3-pip venv postgresql postgresql-contrib\n    ```\n1. Naviage to the project repository\n\n    ```\n    cd task-horizon\n    ```\n1. Setup and activate a python virtual enviourment. *(optional but recommended)*\n    \n    ```\n    python3 -m venv th\n    source th/bin/activate\n    ```\n1. Install all the required packages from `requirements.txt`\n\n    ```\n    pip3 install -r requirements.txt\n    ```\n1. Login to PostgreSQL\n\n    ```\n    sudo -u postgres psql\n    ```\n\n1. Create a database\n\n    ```\n    CREATE DATABASE task_manager;\n    ```\n1. Create a Superuser and grant privileges to the user\n\n    ```    \n    CREATE USER admin WITH PASSWORD 'root12345';\n    GRANT ALL PRIVILEGES ON DATABASE task_manager TO admin;\n    ```\n1. Exit PostgreSQL\n    ```\n    \\q\n    ```\n1. Create a file named `.env` in the root of the project \u0026 add these details\n\n    ```\n    SECRET_KEY=your_secret_key\n    DEBUG=False\n    DB_ENGINE=django.db.backends.postgresql\n    DB_NAME=task_manager\n    DB_USER=admin\n    DB_PASSWORD=root12345\n    DB_HOST=localhost\n    DB_PORT=5432\n    ```\n1. Import Data from db.json\n\n    ```\n    python3 manage.py loaddata db.json\n    ```\n\n1. Run Server\n\n    ```\n    python manage.py runserver\n    ```\n\n    - Open the browser and go to http://127.0.0.1:8000/\n    - To access the admin panel, go to http://127.0.0.1:8000/admin/\n    \n    - Login with the following credentials:\n        - Username: `admin`\n        - Password: `admin`\n    \n    - Steps to create other ADMIN Accounts\n\n    ```\n    python manage.py createsuperuser\n    ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frishabhmohan13%2Ftask-horizon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frishabhmohan13%2Ftask-horizon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frishabhmohan13%2Ftask-horizon/lists"}