{"id":20165335,"url":"https://github.com/ayodimeji1/e-shopproject","last_synced_at":"2026-04-11T13:35:12.351Z","repository":{"id":119757275,"uuid":"492590743","full_name":"Ayodimeji1/e-shopproject","owner":"Ayodimeji1","description":null,"archived":false,"fork":false,"pushed_at":"2024-11-04T04:16:38.000Z","size":25676,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-30T20:32:46.425Z","etag":null,"topics":["backend","django","ecommerce","frontend","full-stack","html-css-javascript","python","webapplication"],"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/Ayodimeji1.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":"2022-05-15T20:01:04.000Z","updated_at":"2024-11-04T04:16:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"7f9c8376-9c52-4ca0-9632-5004a200b1c5","html_url":"https://github.com/Ayodimeji1/e-shopproject","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Ayodimeji1/e-shopproject","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayodimeji1%2Fe-shopproject","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayodimeji1%2Fe-shopproject/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayodimeji1%2Fe-shopproject/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayodimeji1%2Fe-shopproject/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ayodimeji1","download_url":"https://codeload.github.com/Ayodimeji1/e-shopproject/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayodimeji1%2Fe-shopproject/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31682953,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T13:07:20.380Z","status":"ssl_error","status_checked_at":"2026-04-11T13:06:47.903Z","response_time":54,"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":["backend","django","ecommerce","frontend","full-stack","html-css-javascript","python","webapplication"],"created_at":"2024-11-14T00:37:28.918Z","updated_at":"2026-04-11T13:35:12.328Z","avatar_url":"https://github.com/Ayodimeji1.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# E-Shop Project\n\n## Overview\n\nThe Project is a fully-featured e-commerce web application developed using Django as the backend framework. This project includes capabilities for product management, payment integration, user interaction, and a responsive UI. The project structure incorporates modular design principles to ensure scalability and maintainability.\n\n## Table of Contents\n\n- [Features](#features)\n- [Project Structure](#project-structure)\n- [Installation](#installation)\n  - [Backend Setup](#backend-setup)\n- [Usage](#usage)\n- [Dependencies](#dependencies)\n- [Configuration](#configuration)\n- [Deployment](#deployment)\n- [License](#license)\n\n## Features\n\n- **Product Management**: Create, read, update, and delete (CRUD) operations for products.\n- **Category Management**: Organize products into categories.\n- **User-Friendly Interface**: Includes static assets and responsive design for seamless user experience.\n- **Payment Integration**: Built-in payment processing support via Paystack.\n- **Search and Filtering**: Product search and category-based filtering.\n- **Admin Panel**: Comprehensive admin interface for managing products, orders, and more.\n\n## Project Structure\n\n```\ne-shopproject-main/\n│\n├── eshopproject/                            # Main project configuration\n│   ├── __init__.py\n│   ├── asgi.py                              # ASGI config for async support\n│   ├── settings/                            # Settings for different environments\n│   │   ├── base.py                          # Base settings\n│   │   ├── dev.py                           # Development settings\n│   │   └── prod.py                          # Production settings\n│   ├── urls.py                              # Project URL configuration\n│   ├── wsgi.py                              # WSGI entry point for deployment\n│\n├── payment/                                 # Payment app for handling payments\n│   ├── templates/                           # Payment templates\n│   ├── migrations/                          # Database migrations for payment app\n│   ├── __init__.py\n│   ├── admin.py                             # Admin setup for payments\n│   ├── apps.py                              # App configuration\n│   ├── forms.py                             # Form handling for payment views\n│   ├── models.py                            # Payment models\n│   ├── paystack.py                          # Paystack integration logic\n│   ├── utilities.py                         # Utility functions\n│   ├── urls.py                              # URL configuration for payment routes\n│   └── views.py                             # Views for handling payment processes\n│\n├── product/                                 # Product management app\n│   ├── templates/                           # Product-related templates\n│   ├── static/                              # Product-specific static files (e.g., CSS)\n│   ├── migrations/                          # Database migrations for product app\n│   ├── __init__.py\n│   ├── admin.py                             # Admin panel setup for products\n│   ├── apps.py                              # App configuration\n│   ├── context_processors.py                # Context processors for template rendering\n│   ├── forms.py                             # Forms for product-related input\n│   ├── models.py                            # Product and category models\n│   ├── urls.py                              # URL configuration for product routes\n│   └── views.py                             # View logic for product interactions\n│\n├── shop/                                    # Main app for general shop logic\n│   ├── templates/                           # Main templates (e.g., index, base)\n│   ├── static/                              # General static assets (CSS, JS, images)\n│   ├── migrations/                          # Database migrations for shop app\n│   ├── __init__.py\n│   ├── admin.py                             # Admin configurations for the shop\n│   ├── apps.py                              # App configuration\n│   ├── models.py                            # Models related to the shop functionality\n│   ├── urls.py                              # URL routing for the shop\n│   └── views.py                             # Main views for shop functionality\n│\n├── src/                                     # Source files for assets and templates\n│   ├── js/                                  # Custom JavaScript files\n│   ├── scss/                                # SCSS for custom styling\n│   ├── pug/                                 # Pug templates for pre-processing\n│   └── ...                                  # Additional asset configurations\n│\n├── README.md                                # Project documentation\n├── requirements.txt                         # Python package dependencies\n└── manage.py                                # Django management script\n```\n\n## Installation\n\n### Prerequisites\n- **Python 3.10+**\n- **Django 4.x**\n- **Virtual Environment Tool (optional but recommended)**\n\n### Backend Setup\n\n1. **Navigate to the project directory**:\n   \\`\\`\\`bash\n   cd e-shopproject-main\n   \\`\\`\\`\n\n2. **Create and activate a virtual environment**:\n   \\`\\`\\`bash\n   python -m venv env\n   source env/bin/activate  # On Windows, use 'env\\Scripts\\activate'\n   \\`\\`\\`\n\n3. **Install the required packages**:\n   \\`\\`\\`bash\n   pip install -r requirements.txt\n   \\`\\`\\`\n\n4. **Apply migrations to set up the database**:\n   \\`\\`\\`bash\n   python manage.py migrate\n   \\`\\`\\`\n\n5. **Create a superuser for accessing the admin panel**:\n   \\`\\`\\`bash\n   python manage.py createsuperuser\n   \\`\\`\\`\n\n6. **Run the development server**:\n   \\`\\`\\`bash\n   python manage.py runserver\n   \\`\\`\\`\n\n## Usage\n\n- **Backend**: Visit `http://localhost:8000` to access the application. The admin panel is available at `http://localhost:8000/admin`.\n\n## Dependencies\n\n- **Django**\n- **Django REST Framework (if applicable)**\n- **Paystack** for payment integration\n- **Other dependencies** specified in `requirements.txt`\n\n## Configuration\n\n- **Environment Variables**: Add necessary environment variables (e.g., API keys) in a `.env` file.\n- **Static Files**: Ensure the `static` directory is configured in `settings.py`.\n\n## Deployment\n\n- **Production Considerations**:\n  - Use `gunicorn` or `uWSGI` for running Django in production.\n  - Configure **NGINX** as a reverse proxy.\n  - Set up **HTTPS** for secure connections using **Let’s Encrypt**.\n\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayodimeji1%2Fe-shopproject","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fayodimeji1%2Fe-shopproject","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayodimeji1%2Fe-shopproject/lists"}