{"id":49107005,"url":"https://github.com/sette7blo/feedme","last_synced_at":"2026-05-04T02:10:51.370Z","repository":{"id":350937499,"uuid":"1208844638","full_name":"sette7blo/feedme","owner":"sette7blo","description":"Self-hosted AI recipe manager with meal planning and pantry","archived":false,"fork":false,"pushed_at":"2026-04-12T20:40:08.000Z","size":94,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-12T22:24:42.316Z","etag":null,"topics":["docker","flask","meal-planning","recipe-manager","self-hosted","sqlite"],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/sette7blo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-12T20:18:05.000Z","updated_at":"2026-04-12T20:40:11.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sette7blo/feedme","commit_stats":null,"previous_names":["sette7blo/feedme"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/sette7blo/feedme","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sette7blo%2Ffeedme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sette7blo%2Ffeedme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sette7blo%2Ffeedme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sette7blo%2Ffeedme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sette7blo","download_url":"https://codeload.github.com/sette7blo/feedme/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sette7blo%2Ffeedme/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32073496,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-21T01:35:38.224Z","status":"online","status_checked_at":"2026-04-21T02:00:06.111Z","response_time":128,"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":["docker","flask","meal-planning","recipe-manager","self-hosted","sqlite"],"created_at":"2026-04-21T02:01:12.817Z","updated_at":"2026-05-04T02:10:51.362Z","avatar_url":"https://github.com/sette7blo.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Feedme — Recipe Intelligence\n\nA self-hosted recipe management platform. Import recipes from AI generation, RSS feeds, URLs, or photos. Plan meals, track your pantry, and generate grocery lists. Runs entirely in Docker.\n\n---\n\n## Features\n\n- **AI generation** — describe a dish and get a full recipe with photo\n- **RSS import** — subscribe to recipe sites; new recipes land automatically\n- **URL import** — paste any recipe page URL to extract and save it\n- **Image import** — photograph a cookbook page or recipe card; AI extracts it\n- **Staging workflow** — all imports require your approval before going active\n- **Meal planner** — assign recipes to days across a weekly calendar\n- **Pantry tracking** — log what you have with quantities; scan barcodes to look up products instantly via Open Food Facts\n- **Cook tonight** — filter your recipe library by what you already have in the pantry, sorted by ingredient coverage\n- **Grocery list** — automatically calculates what to buy based on your meal plan and pantry\n- No account, no cloud, no tracking — your data stays on your server\n\n---\n\n## Quick Start\n\nNo build required — pull straight from Docker Hub.\n\n**1. Create a `docker-compose.yml`:**\n\n```yaml\nservices:\n  feedme:\n    image: dockersette/feedme:latest\n    ports:\n      - \"5000:5000\"\n    volumes:\n      - ./recipes:/app/recipes\n      - ./images:/app/images\n      - ./data:/app/data\n      - ./.env:/app/.env\n    restart: unless-stopped\n```\n\n**2. Create a `.env` file:**\n\n```env\nPPQ_API_KEY=your-key-here\nPPQ_BASE_URL=https://api.ppq.ai/v1\nPPQ_MODEL=claude-haiku-4-5\nPPQ_IMAGE_MODEL=gpt-image-2\nPPQ_VISION_MODEL=claude-haiku-4-5\n\nFLASK_SECRET=change-me-to-something-random\n```\n\n**3. Start it:**\n\n```bash\ndocker compose up -d\n```\n\n**4. Open it:**\n\n```\nhttp://YOUR_SERVER_IP:5000\n```\n\n---\n\n## Updating\n\n```bash\ndocker compose pull \u0026\u0026 docker compose up -d\n```\n\n---\n\n## AI Provider\n\nFeedme uses any OpenAI-compatible endpoint. The recommended provider is [PPQ.ai](https://ppq.ai), which gives access to Claude and OpenAI models via a single API key and endpoint.\n\nYou can configure the key and models directly in the Settings tab after first launch. PPQ.ai offers a wide range of text, vision, and image generation models — pick what suits your budget and quality preferences.\n\n---\n\n## Port\n\nDefault is **5000**. Change the left side of the ports mapping to use a different host port:\n\n```yaml\nports:\n  - \"8080:5000\"   # serve on port 8080 instead\n```\n\n---\n\n## Security\n\nFeedme has no authentication. It is designed for **personal / home server use only**, behind a firewall or VPN. Do not expose port 5000 to the public internet without adding an auth layer (e.g. HTTP Basic Auth via an nginx reverse proxy).\n\n---\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsette7blo%2Ffeedme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsette7blo%2Ffeedme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsette7blo%2Ffeedme/lists"}