{"id":19287507,"url":"https://github.com/jps27cse/gadgets-e-commerce_react_django","last_synced_at":"2025-08-13T01:05:57.749Z","repository":{"id":197721362,"uuid":"699190805","full_name":"jps27CSE/Gadgets-E-Commerce_React_Django","owner":"jps27CSE","description":"Gadgets-E-Commerce_React_Django","archived":false,"fork":false,"pushed_at":"2023-10-24T11:53:41.000Z","size":5518,"stargazers_count":4,"open_issues_count":3,"forks_count":5,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-28T00:36:03.559Z","etag":null,"topics":["django","firebase","hacktoberfest","hacktoberfest-accepted","hacktoberfest-approved","hacktoberfest2023","hacktoberfest2023-approved","hactoberfest2023-accepted","javascript","opt-in-to-hacktoberfest","python","react"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/jps27CSE.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,"zenodo":null}},"created_at":"2023-10-02T06:00:31.000Z","updated_at":"2024-09-12T01:20:37.000Z","dependencies_parsed_at":"2025-04-22T05:34:49.575Z","dependency_job_id":null,"html_url":"https://github.com/jps27CSE/Gadgets-E-Commerce_React_Django","commit_stats":null,"previous_names":["jps27cse/e-commerce_react_django"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jps27CSE/Gadgets-E-Commerce_React_Django","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jps27CSE%2FGadgets-E-Commerce_React_Django","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jps27CSE%2FGadgets-E-Commerce_React_Django/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jps27CSE%2FGadgets-E-Commerce_React_Django/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jps27CSE%2FGadgets-E-Commerce_React_Django/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jps27CSE","download_url":"https://codeload.github.com/jps27CSE/Gadgets-E-Commerce_React_Django/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jps27CSE%2FGadgets-E-Commerce_React_Django/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270160920,"owners_count":24537542,"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","status":"online","status_checked_at":"2025-08-12T02:00:09.011Z","response_time":80,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["django","firebase","hacktoberfest","hacktoberfest-accepted","hacktoberfest-approved","hacktoberfest2023","hacktoberfest2023-approved","hactoberfest2023-accepted","javascript","opt-in-to-hacktoberfest","python","react"],"created_at":"2024-11-09T22:06:06.643Z","updated_at":"2025-08-13T01:05:57.702Z","avatar_url":"https://github.com/jps27CSE.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gadgets-E-Commerce_React_Django\n\n\n## React + Vite Template\n\n### Setting up React with Vite\n\n#### Table of Contents\n\n1. [Prerequisites](#prerequisites)\n2. [Installation](#installation)\n3. [Usage](#usage)\n4. [Configuration](#configuration)\n5. [Technologies Used](#technologies-used)\n6. [Contributing](#contributing)\n7. [License](#license)\n\n#### Prerequisites\n\nBefore you start, ensure you have the following prerequisites installed on your system:\n\n- Node.js: [Installation Guide](https://nodejs.org/en/download/)\n- npm (Node Package Manager): It comes bundled with Node.js.\n- Git: [Installation Guide](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)\n\n#### Installation\n\nTo set up a React project with Vite, follow these steps:\n\n1. **Create a New Project:**\n\n   Initialize a new Vite project with the `create-vite` command, using one of the available plugins:\n\n   - Using Babel for Fast Refresh (Recommended):\n\n     ```bash\n     npx create-vite@latest my-react-app --template react\n     ```\n\n   - Using SWC for Fast Refresh:\n\n     ```bash\n     npx create-vite@latest my-react-app --template react-swc\n     ```\n\n   Replace `my-react-app` with your preferred project name.\n\n2. **Navigate to Your Project:**\n\n   Change your current directory to the newly created project:\n\n   ```bash\n   cd my-react-app\n   ```\n\n3. **Install Dependencies:**\n\n   Use npm to install project dependencies:\n\n   ```bash\n   npm install\n   ```\n\n#### Usage\n\nNow that your React + Vite project is set up, you can start using it:\n\n1. **Development Server:**\n\n   Start the development server with hot-reloading by running:\n\n   ```bash\n   npm run dev\n   ```\n\n   This will open a development server and display a URL in the console. Open that URL in your web browser to see your React app.\n\n2. **Build for Production:**\n\n   To build your project for production, use:\n\n   ```bash\n   npm run build\n   ```\n\n   The optimized production build will be available in the `dist` directory.\n\n#### Configuration\n\nThe default Vite configuration for React should work seamlessly with the chosen Fast Refresh plugin. If you need to make custom configurations, you can do so by editing the `vite.config.js` file. Refer to the [official Vite documentation](https://vitejs.dev/config/) for detailed configuration options.\n\n\n\n## Django Installation For Windows\n\n#### Prerequisites\n\nBefore you start, ensure you have the following prerequisites installed on your system:\n\n- Python: [Installation Guide](https://www.python.org/downloads/)\n\n\n1. **Install virtual environment**\n\n         python -m pip install --user virtualenv\n\n2. **Setup virtual environment, where `\u003cenvironment_name\u003e` is replaced by your virtual environment name**\n\n         Gadgets-E-Commerce_React_Django\\backend\u003e  python -m venv \u003cenvironment_name\u003e\n\n3. **Activate virtual environment**\n\n         Gadgets-E-Commerce_React_Django\\backend\u003e  \u003cenvironment_name\u003e\\Scripts\\activate\n\n4. **After successfully activate virtual environment. Now, Install backend dependencies**\n\n         (\u003cenvironment-name\u003e) Gadgets-E-Commerce_React_Django\\backend\u003e pip install -r requirements.txt\n\n5. **Create makemigrations file**\n\n         (\u003cenvironment-name\u003e) Gadgets-E-Commerce_React_Django\\backend\u003e python manage.py makemigrations\n\n6. **Create database table**\n\n         (\u003cenvironment-name\u003e) Gadgets-E-Commerce_React_Django\\backend\u003e python manage.py migrate\n\n7. **Create superUser for control admin panel**\n\n         (\u003cenvironment-name\u003e) Gadgets-E-Commerce_React_Django\\backend\u003e python manage.py createsuperuser\n8. **After command No. (7) set your `username`, `email` and `password`, where `password` is invisible for you.**\n\n9. **Now run the server**\n\n         (\u003cenvironment-name\u003e) Gadgets-E-Commerce_React_Django\\backend\u003e python manage.py runserver\n\n10. **Now, your Django server is prepared to communicate with any other frontend.**\n\n\n\n\n### Technologies Used\n\nThis project integrates several technologies:\n\n- React: A JavaScript library for building user interfaces.\n- React Router DOM: A library for handling routing in React applications.\n- Tailwind CSS: A utility-first CSS framework for quickly building responsive designs.\n- Firebase: A cloud-based platform for building web and mobile apps.\n- Django: A high-level Python web framework for building robust web applications.\n\nMake sure to configure and utilize these technologies as needed for your project.\n\n### Contributing\n\nContributions to this project are welcome! If you'd like to contribute:\n\n1. Fork the repository.\n2. Create a new branch for your feature or bug fix.\n3. Make your changes and commit them with clear and descriptive commit messages.\n4. Push your changes to your forked repository.\n5. Create a pull request to the original repository, detailing your changes.\n\n### License\n\nThis project is licensed under the [LICENSE_NAME](LICENSE_URL). Please review the license before using or contributing to the project.\n\nFeel free to reach out if you have any questions or need further assistance. Happy coding!\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjps27cse%2Fgadgets-e-commerce_react_django","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjps27cse%2Fgadgets-e-commerce_react_django","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjps27cse%2Fgadgets-e-commerce_react_django/lists"}