{"id":26911150,"url":"https://github.com/itsleonbro/pantryquest","last_synced_at":"2026-04-07T16:31:59.025Z","repository":{"id":266928074,"uuid":"887431485","full_name":"itsleonbro/pantryquest","owner":"itsleonbro","description":"A React web app that helps you discover recipes based on the ingredients you have, with an option to create and share your own recipes.","archived":false,"fork":false,"pushed_at":"2025-03-06T19:03:10.000Z","size":419,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-14T07:40:25.365Z","etag":null,"topics":["express","jwt","mongodb","node","react","spoonacularapi"],"latest_commit_sha":null,"homepage":"https://pantryquest.itsleon.dev","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/itsleonbro.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":"2024-11-12T18:24:47.000Z","updated_at":"2025-03-06T19:03:14.000Z","dependencies_parsed_at":"2024-12-07T04:00:59.388Z","dependency_job_id":"a05563f3-639e-4b06-8bc2-7aba17df4366","html_url":"https://github.com/itsleonbro/pantryquest","commit_stats":null,"previous_names":["itsleonbro/pantryquest"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/itsleonbro/pantryquest","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsleonbro%2Fpantryquest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsleonbro%2Fpantryquest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsleonbro%2Fpantryquest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsleonbro%2Fpantryquest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itsleonbro","download_url":"https://codeload.github.com/itsleonbro/pantryquest/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itsleonbro%2Fpantryquest/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31520468,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"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":["express","jwt","mongodb","node","react","spoonacularapi"],"created_at":"2025-04-01T14:36:49.065Z","updated_at":"2026-04-07T16:31:58.999Z","avatar_url":"https://github.com/itsleonbro.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PantryQuest\n\nA web application for discovering recipes based on ingredients you already have in your pantry. Create and share your own recipes, or explore a community-driven collection of recipes created by other users on the platform.\n\n## Features\n\n- **Ingredient-Based Search:** Find recipes by entering multiple ingredients separated by commas\n- **Cuisine Quick Search:** Browse recipes by cuisine type with predefined buttons for:\n  - Japanese\n  - Italian\n  - American\n  - Asian\n  - European\n- **User Authentication:** Register and login to access personalized features\n- **Favorites System:** Save recipes you love for quick access later\n- **My Recipes:** Create, edit, and manage your own personal recipes\n- **Community Recipes:** Browse and view recipes created by other PantryQuest users\n- **Responsive Design:** Works on desktop, tablet, and mobile devices\n\n## Live Site\n\nYou can view the live version of PantryQuest at:  \n[PantryQuest - Live Site](https://pantryquest.itsleon.dev)\n\n## Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/itsleonbro/pantryquest.git\n   ```\n\n2. Install frontend dependencies:\n\n   ```bash\n   cd pantryquest\n   npm install\n   ```\n\n3. Set up frontend environment:\n   Create a .env file in the root directory with:\n\n   ```\n   VITE_API_KEY=YourSpoonacularApiKey\n   VITE_API_URL=http://localhost:5001\n   ```\n\n4. Install backend dependencies:\n\n   ```bash\n   cd backend\n   npm install\n   ```\n\n5. Set up backend environment:\n   Create a .env file in the backend directory with:\n\n   ```\n   MONGODB_URI=YourMongoDBConnectionString\n   JWT_SECRET=YourSecretKey\n   PORT=5001\n   CORS_ORIGIN=http://localhost:5173\n   ```\n\n   ### Important:\n\n   - Never commit your .env files\n   - Keep your API keys private\n   - Get your Spoonacular API key from their API Portal\n   - Free tier includes 150 requests per day\n\n## Running the Application\n\n1. Start the backend server:\n\n   ```bash\n   cd backend\n   npm start\n   ```\n\n2. Start the frontend development server:\n\n   ```bash\n   cd pantryquest\n   npm run dev\n   ```\n\n3. Access the application at http://localhost:5173\n\n## Technology Stack\n\n- **Frontend:** React, React Router, Vite, CSS Modules, Axios\n- **Backend:** Node.js, Express, MongoDB, JWT, bcrypt\n- **API:** Spoonacular (150 requests/day free tier)\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](https://opensource.org/licenses/MIT) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitsleonbro%2Fpantryquest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitsleonbro%2Fpantryquest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitsleonbro%2Fpantryquest/lists"}