{"id":46542783,"url":"https://github.com/louisstefanuto/miam","last_synced_at":"2026-04-11T20:01:22.476Z","repository":{"id":334287055,"uuid":"1140871844","full_name":"LouisStefanuto/miam","owner":"LouisStefanuto","description":"A web app to organize cooking recipes and export them in printable formats to share with my family and friends.","archived":false,"fork":false,"pushed_at":"2026-04-11T16:10:24.000Z","size":34551,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-11T17:25:56.275Z","etag":null,"topics":["docker","postgresql","python","recipes-website"],"latest_commit_sha":null,"homepage":"https://louisstefanuto.github.io/miam/","language":"TypeScript","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/LouisStefanuto.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-23T21:32:49.000Z","updated_at":"2026-04-11T15:45:51.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/LouisStefanuto/miam","commit_stats":null,"previous_names":["louisstefanuto/miam"],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/LouisStefanuto/miam","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LouisStefanuto%2Fmiam","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LouisStefanuto%2Fmiam/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LouisStefanuto%2Fmiam/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LouisStefanuto%2Fmiam/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LouisStefanuto","download_url":"https://codeload.github.com/LouisStefanuto/miam/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LouisStefanuto%2Fmiam/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31693274,"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":["docker","postgresql","python","recipes-website"],"created_at":"2026-03-07T01:17:12.525Z","updated_at":"2026-04-11T20:01:22.471Z","avatar_url":"https://github.com/LouisStefanuto.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# miam\n\n**A web app to organize cooking recipes and export them in printable formats to share with my family and friends.**\n\n\u003cimg src=\"docs/docs/assets/images/logo.png\" alt=\"Logo\" width=\"25%\"\u003e\n\n[![Docs](https://img.shields.io/badge/docs-available-brightgreen.svg)](https://louisstefanuto.github.io/miam/)\n[![Coverage](https://codecov.io/gh/LouisStefanuto/miam/branch/main/graph/badge.svg)](https://codecov.io/gh/LouisStefanuto/miam)\n\n[**Install**](#install) • [**Run**](#run) • [**Docs**](https://louisstefanuto.github.io/miam/) • [**Dev**](#dev)\n\n\u003c/div\u003e\n\n---\n\n## Install\n\nInstall dependencies and setup virtual environment. Requires [`uv`](https://docs.astral.sh/uv/getting-started/installation/) installed.\n\n```bash\nmake install\n```\n\n## Run\n\nLaunch project using `docker compose`.\n\n```bash\nmake start\n```\n\nStop project.\n\n```bash\nmake stop\n```\n\n## Documentation\n\nThe project's documentation is available on [**GitHub Pages**](https://louisstefanuto.github.io/miam/).\n\nTo preview your documentation in real-time while editing, run:\n\n```bash\nmake docs\n```\n\n## Google SSO Setup\n\nAuthentication uses Google Sign-In. To configure it:\n\n1. Go to [Google Cloud Console](https://console.cloud.google.com) and create a project (or use an existing one)\n2. Navigate to **Google Auth Platform \u003e Clients**, click **Create Client**, select **Web application**\n3. Under **Authorized JavaScript origins**, add your frontend URL (e.g. `http://localhost:3000`)\n4. Copy the **Client ID** and set it in both env files:\n\n```env\n# backend/.env\nGOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com\n\n# frontend/.env\nVITE_GOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com\n```\n\n5. Go to **Google Auth Platform \u003e Audience** and add your email under **Test users** (required while the app is in Testing mode)\n6. Restart both frontend and backend\n\n## Dev\n\nBefore pushing to this repo, please setup pre-commit.\n\n```bash\nuv tool install pre-commit\npre-commit install --hook-type commit-msg --hook-type pre-push\n```\n\nWhen running the project containers, monitor container resource usage with [Dozzle](https://dozzle.dev/guide/what-is-dozzle).\n\n```bash\nmake dozzle\n```\n\nFor performance results under load testing, see the [Locust section](./locust/README.md).\n\n## Architecture\n\n- Containerization: Docker Compose, Docker, Dozzle for container resource monitoring\n- Backend: PostgreSQL, FastAPI, SqlAlchemy, Alembic, Python\n- Frontend (vibe-coded): React, TypeScript, Vite, Tailwind CSS, shadcn/ui\n- Load testing: Locust\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flouisstefanuto%2Fmiam","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flouisstefanuto%2Fmiam","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flouisstefanuto%2Fmiam/lists"}