{"id":18917014,"url":"https://github.com/biswadeep-roy/bakery-mern","last_synced_at":"2026-04-11T19:33:35.496Z","repository":{"id":247991382,"uuid":"826940867","full_name":"biswadeep-roy/bakery-mern","owner":"biswadeep-roy","description":"Heavenly bites is a full-featured bakery app using the MERN stack, offering seamless online cake browsing, ordering, and management.","archived":false,"fork":false,"pushed_at":"2024-07-11T17:53:35.000Z","size":9938,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-01T07:17:12.876Z","etag":null,"topics":["bakery","bakery-website","css","html","html-css-javascript","javascript","mern","mern-project","mern-stack","mern-stack-development","mongodb","nodejs","react","react-bootstrap","reactjs"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/biswadeep-roy.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}},"created_at":"2024-07-10T17:27:52.000Z","updated_at":"2025-03-25T20:21:08.000Z","dependencies_parsed_at":"2024-07-11T19:25:06.398Z","dependency_job_id":"53d426b7-127d-4102-b6a1-3eb60f7b7a13","html_url":"https://github.com/biswadeep-roy/bakery-mern","commit_stats":null,"previous_names":["biswadeep-roy/bakery-mern"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/biswadeep-roy/bakery-mern","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/biswadeep-roy%2Fbakery-mern","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/biswadeep-roy%2Fbakery-mern/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/biswadeep-roy%2Fbakery-mern/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/biswadeep-roy%2Fbakery-mern/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/biswadeep-roy","download_url":"https://codeload.github.com/biswadeep-roy/bakery-mern/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/biswadeep-roy%2Fbakery-mern/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31693272,"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":["bakery","bakery-website","css","html","html-css-javascript","javascript","mern","mern-project","mern-stack","mern-stack-development","mongodb","nodejs","react","react-bootstrap","reactjs"],"created_at":"2024-11-08T10:23:26.684Z","updated_at":"2026-04-11T19:33:35.474Z","avatar_url":"https://github.com/biswadeep-roy.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Heavenly Bites by Biswadeep\n\nWelcome to the Heavenly Bites by Biswadeep repository! This project is a MERN stack application for a bakery store, providing a delightful online experience to order your favorite baked goods.\n![image](https://github.com/biswadeep-roy/bakery-mern/assets/74821633/3c23cd55-8859-44d2-aa4c-7c136e1c1f61)\n\n\n## Table of Contents\n\n- [Features](#features)\n- [Tech Stack](#tech-stack)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Pages](#pages)\n  - [Homepage](#homepage)\n  - [Menu](#menu)\n  - [Cart](#cart)\n- [Contributing](#contributing)\n- [License](#license)\n- [Contact](#contact)\n\n## Features\n\n- User authentication and authorization\n- Browse and search bakery products\n- Add products to the cart\n- Secure checkout process with Stripe integration\n- Responsive design for all devices\n\n## Tech Stack\n\n**Frontend:**\n- React\n- Redux\n- Tailwind CSS\n\n**Backend:**\n- Node.js\n- Express\n- MongoDB\n- Mongoose\n\n## Installation\n\n1. Clone the repository\n   ```bash\n   git clone https://github.com/biswadeep-roy/bakery-mern.git\n   ```\n\n2. Navigate to the project directory\n   ```bash\n   cd bakery-mern\n   ```\n\n3. Install dependencies for both frontend and backend\n   ```bash\n   cd frontend\n   npm install\n   cd ../backend\n   npm install\n   ```\n\n4. Create a `.env` file in the backend directory and add your environment variables\n   ```env\n   MONGODB_URL=\u003cyour_mongodb_url\u003e\n   STRIPE_SECRET_KEY=\u003cyour_stripe_secret_key\u003e\n   REACT_APP_STRIPE_PUBLIC_KEY=\u003cyour_stripe_public_key\u003e\n   REACT_APP_SERVER_DOMIN=\u003cyour_server_domain\u003e\n   FRONTEND_URL=\u003cyour_frontend_url\u003e\n   ```\n\n## Usage\n\n1. Start the backend server\n   ```bash\n   cd backend\n   npm start\n   ```\n\n2. Start the frontend development server\n   ```bash\n   cd frontend\n   npm start\n   ```\n\n3. Open your browser and navigate to `http://localhost:3000`\n\n## Pages\n\n### Homepage\n\nThe homepage showcases the bakery's special products and provides an overview of the services offered. It includes a carousel of featured products and links to different sections of the site.\n\n### Menu\n\nThe menu page displays a list of all available bakery products with filtering options. Users can browse through different categories and view detailed descriptions of each product.\n\n### Cart\n\nThe cart page allows users to review their selected items, update quantities, and proceed to checkout. It provides a summary of the total cost and integrates with Stripe for secure payments.\n\n## Contributing\n\nWe welcome contributions to improve this project! Please fork the repository and create a pull request with your changes. Ensure that your code adheres to the project's coding standards and includes appropriate tests.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n## Contact\n\nFor any inquiries or feedback, please reach out to Biswadeep Roy at biswadeeproy1230@gmail.com.\n\n---\n\nThank you for visiting Heavenly Bites by Biswadeep! Enjoy your sweet escape!\n \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbiswadeep-roy%2Fbakery-mern","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbiswadeep-roy%2Fbakery-mern","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbiswadeep-roy%2Fbakery-mern/lists"}