{"id":20305292,"url":"https://github.com/jahnvisahni31/pantry_manager","last_synced_at":"2026-04-12T15:32:29.689Z","repository":{"id":255756439,"uuid":"853549446","full_name":"jahnvisahni31/pantry_manager","owner":"jahnvisahni31","description":"A web application to help you keep track of your pantry items, built with Next.js and Firebase.","archived":false,"fork":false,"pushed_at":"2024-09-07T07:18:12.000Z","size":42,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-04T07:23:41.514Z","etag":null,"topics":["firebase","nextjs","pantry-tracker","react","tailwindcss"],"latest_commit_sha":null,"homepage":"https://pantry-manager-coral.vercel.app","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/jahnvisahni31.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-09-06T22:14:39.000Z","updated_at":"2024-10-19T18:41:31.000Z","dependencies_parsed_at":"2024-09-07T02:05:56.272Z","dependency_job_id":"cc28879f-9aca-4763-a9d6-7f6cea426f0b","html_url":"https://github.com/jahnvisahni31/pantry_manager","commit_stats":null,"previous_names":["jahnvisahni31/pantry_manager"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jahnvisahni31/pantry_manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jahnvisahni31%2Fpantry_manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jahnvisahni31%2Fpantry_manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jahnvisahni31%2Fpantry_manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jahnvisahni31%2Fpantry_manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jahnvisahni31","download_url":"https://codeload.github.com/jahnvisahni31/pantry_manager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jahnvisahni31%2Fpantry_manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000703,"owners_count":26082805,"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-10-08T02:00:06.501Z","response_time":56,"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":["firebase","nextjs","pantry-tracker","react","tailwindcss"],"created_at":"2024-11-14T17:08:01.936Z","updated_at":"2025-10-08T19:38:44.048Z","avatar_url":"https://github.com/jahnvisahni31.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pantry Tracker\n\nA web application to help you keep track of your pantry items, built with Next.js and Firebase.\n\n## Features\n\n- User authentication (sign up, login, logout)\n- Add, edit, and delete pantry items\n- Real-time updates using Firebase Realtime Database\n- Responsive design for mobile and desktop\n\n## Technologies Used\n\n- [Next.js](https://nextjs.org/) - React framework for server-side rendering and static site generation\n- [Firebase](https://firebase.google.com/) - Backend-as-a-Service (BaaS) for authentication and database\n- [React](https://reactjs.org/) - JavaScript library for building user interfaces\n- [Tailwind CSS](https://tailwindcss.com/) - Utility-first CSS framework\n\n## Prerequisites\n\nBefore you begin, ensure you have the following installed:\n- Node.js (v14 or later)\n- npm (v6 or later)\n\n## Getting Started\n\n1. Clone the repository:\n   ```\n   git clone https://github.com/yourusername/pantry-tracker.git\n   cd pantry-tracker\n   ```\n\n2. Install dependencies:\n   ```\n   npm install\n   ```\n\n3. Set up Firebase:\n   - Create a new Firebase project at [https://console.firebase.google.com/](https://console.firebase.google.com/)\n   - Enable Authentication and Realtime Database in your Firebase project\n   - Create a web app in your Firebase project and copy the configuration\n   - Create a `.env.local` file in the root directory and add your Firebase configuration:\n     ```\n     NEXT_PUBLIC_FIREBASE_API_KEY=your_api_key\n     NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN=your_auth_domain\n     NEXT_PUBLIC_FIREBASE_PROJECT_ID=your_project_id\n     NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET=your_storage_bucket\n     NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID=your_messaging_sender_id\n     NEXT_PUBLIC_FIREBASE_APP_ID=your_app_id\n     ```\n\n4. Run the development server:\n   ```\n   npm run dev\n   ```\n\n5. Open [http://localhost:3000](http://localhost:3000) in your browser to see the application.\n\n## Folder Structure\n\n```\npantry-tracker/\n├── components/\n│   ├── Layout.js\n│   ├── PantryItem.js\n│   └── PantryList.js\n├── pages/\n│   ├── api/\n│   ├── _app.js\n│   ├── index.js\n│   ├── login.js\n│   └── signup.js\n├── styles/\n│   └── globals.css\n├── utils/\n│   └── firebase.js\n├── .env.local\n├── .gitignore\n├── next.config.js\n├── package.json\n└── README.md\n```\n\n## Deployment\n\nTo deploy your Pantry Tracker application, you can use [Vercel](https://vercel.com/), which is optimized for Next.js projects:\n\n1. Push your code to a GitHub repository\n2. Connect your GitHub account to Vercel\n3. Import your repository and deploy\n\nAlternatively, you can deploy to other platforms that support Next.js applications.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is open source and available under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjahnvisahni31%2Fpantry_manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjahnvisahni31%2Fpantry_manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjahnvisahni31%2Fpantry_manager/lists"}