{"id":19883006,"url":"https://github.com/ezeisraeljohn/task_creation","last_synced_at":"2026-05-09T23:24:15.157Z","repository":{"id":247839562,"uuid":"824320665","full_name":"ezeisraeljohn/task_creation","owner":"ezeisraeljohn","description":"This repository contains a web application built to handle task creation in card form","archived":false,"fork":false,"pushed_at":"2024-07-11T19:47:40.000Z","size":310,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-11T18:28:49.109Z","etag":null,"topics":["api","django-rest-framework","rest-api","task-manager","task-scheduler"],"latest_commit_sha":null,"homepage":"","language":"CSS","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/ezeisraeljohn.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":"2024-07-04T21:28:44.000Z","updated_at":"2024-07-11T19:47:44.000Z","dependencies_parsed_at":"2024-11-12T17:19:17.191Z","dependency_job_id":"c38fcd6d-c2a2-4cf7-9ed4-546101ccab40","html_url":"https://github.com/ezeisraeljohn/task_creation","commit_stats":null,"previous_names":["ezeisraeljohn/task_creation"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezeisraeljohn%2Ftask_creation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezeisraeljohn%2Ftask_creation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezeisraeljohn%2Ftask_creation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ezeisraeljohn%2Ftask_creation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ezeisraeljohn","download_url":"https://codeload.github.com/ezeisraeljohn/task_creation/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241311440,"owners_count":19942167,"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":["api","django-rest-framework","rest-api","task-manager","task-scheduler"],"created_at":"2024-11-12T17:19:08.487Z","updated_at":"2026-05-09T23:24:10.127Z","avatar_url":"https://github.com/ezeisraeljohn.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Task Creation App\n\n![Task Creation](task_creation.png)\n\nThe Task Creation App allows users to create tasks, assign them to users, and mark tasks as completed. The app is built with Django and Django REST Framework.\n\n## Table of Contents\n\n1. [Getting Started](#getting-started)\n2. [Installation](#installation)\n3. [Usage](#usage)\n4. [Testing](#testing)\n5. [API Documentation](#api-documentation)\n6. [Contributing](#contributing)\n7. [License](#license)\n\n## Getting Started\n\nTo get started with the Task Creation App, follow the instructions below to set up the project locally.\n\n## Installation\n\n### Prerequisites\n\n- Python 3.x\n- Node.js and npm\n- PostgreSQL or MySQL (optional, if you prefer not to use SQLite)\n\n### Steps\n\n1. **Clone the repository:**\n\n    ```bash\n    git clone https://github.com/ezeisraeljohn/task_creation.git\n    cd task_creation\n    ```\n\n2. **Set up a virtual environment:**\n\n    ```bash\n    python -m venv .venv\n    source .venv/bin/activate  # On Windows use `.venv\\Scripts\\activate`\n    ```\n\n3. **Install the dependencies:**\n\n    ```bash\n    pip install -r requirements.txt\n    ```\n\n4. **Install Node.js dependencies:**\n\n    ```bash\n    npm install\n    ```\n\n5. **Build Tailwind CSS:**\n\n    Ensure you have npx installed (it comes with npm). Then run:\n\n    ```bash\n    npx tailwindcss -i ./task_creation_app/static/src/input.css -o ./task_creation_app/static/src/output.css\n    ```\n\n6. **Configure the database:**\n\n    Ensure you have a PostgreSQL or MySQL database set up. Update the database settings in the `task_creation/settings.py` file.\n\n    ```python\n    DATABASES = {\n        'default': {\n            'ENGINE': 'django.db.backends.postgresql',\n            'NAME': 'dbname',\n            'USER': 'username',\n            'PASSWORD': 'password',\n            'HOST': 'localhost',\n            'PORT': '5432',\n        }\n    }\n    ```\n\n    If none is available, you can still use the default SQLite database.\n\n    ```python\n    DATABASES = {\n        'default': {\n            'ENGINE': 'django.db.backends.sqlite3',\n            'NAME': BASE_DIR / 'db.sqlite3',\n        }\n    }\n    ```\n\n7. **Apply the migrations:**\n\n    ```bash\n    python manage.py makemigrations\n    python manage.py migrate\n    ```\n\n    create a superuser(if you want to access the admin page)\n    ```bash\n        python manage.py createsuperuser\n    ```\n    and follow the prompts to create a superuser.\n\n8. **Run the server:**\n\n    ```bash\n    python manage.py runserver\n    ```\n\n## Usage\n\nOnce the server is running, you can interact with the application's dashboard using the link [http://127.0.0.1:8000/dashboard/](http://127.0.0.1:8000/dashboard/)\n\n## Testing\n\nTo run the tests, use the following command:\n\n```bash\npython manage.py test\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fezeisraeljohn%2Ftask_creation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fezeisraeljohn%2Ftask_creation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fezeisraeljohn%2Ftask_creation/lists"}