{"id":46722611,"url":"https://github.com/helmecke/minibiblio","last_synced_at":"2026-03-15T19:41:37.388Z","repository":{"id":298376773,"uuid":"838929877","full_name":"helmecke/minibiblio","owner":"helmecke","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-22T07:23:25.000Z","size":1207,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-22T09:12:51.847Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/helmecke.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-08-06T16:07:39.000Z","updated_at":"2025-11-22T07:23:28.000Z","dependencies_parsed_at":"2025-06-10T20:48:45.903Z","dependency_job_id":null,"html_url":"https://github.com/helmecke/minibiblio","commit_stats":null,"previous_names":["helmecke/minibiblio"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/helmecke/minibiblio","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helmecke%2Fminibiblio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helmecke%2Fminibiblio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helmecke%2Fminibiblio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helmecke%2Fminibiblio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/helmecke","download_url":"https://codeload.github.com/helmecke/minibiblio/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/helmecke%2Fminibiblio/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30295607,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T11:12:22.024Z","status":"ssl_error","status_checked_at":"2026-03-09T11:10:54.577Z","response_time":61,"last_error":"SSL_read: 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":[],"created_at":"2026-03-09T12:38:26.343Z","updated_at":"2026-03-15T19:41:37.383Z","avatar_url":"https://github.com/helmecke.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MiniBiblio\n\n![GitHub release (latest by date)](https://img.shields.io/github/v/release/helmecke/minibiblio?label=version)\n![Docker Pulls](https://img.shields.io/badge/docker-ghcr.io-blue)\n![License](https://img.shields.io/github/license/helmecke/minibiblio)\n\nA comprehensive library management system for small libraries.\n\n## Quick Start\n\n### Using Pre-built Images (Recommended)\n\n1. **Download the deployment files**:\n   ```bash\n   wget https://raw.githubusercontent.com/helmecke/minibiblio/main/docker-compose.prod.yml\n   wget https://raw.githubusercontent.com/helmecke/minibiblio/main/.env.production\n   ```\n\n2. **Configure environment**:\n   ```bash\n   cp .env.production .env\n   # Edit .env with your credentials\n   ```\n\n3. **Start MiniBiblio**:\n   ```bash\n   docker-compose -f docker-compose.prod.yml up -d\n   ```\n\n4. **Access the application**:\n   - Web Interface: http://localhost:3000\n   - Default credentials: admin / (see .env for ADMIN_PASSWORD)\n\n### Building from Source\n\nSee [DEPLOYMENT.md](DEPLOYMENT.md) for detailed build instructions.\n\n## Introduction\n\nThis is a hybrid Next.js + Python app that uses a fullstack Next.js application and FastAPI as another API backend. One great use case of this is to write Next.js apps that use Python AI libraries on the backend.\n\n## How It Works\n\nThe Python/FastAPI server is mapped into to Next.js app under `/api/py/`(easily changeable) and the NextJS is mapped to `/api/`.\n\nThis is implemented using [`next.config.js` rewrites](https://github.com/digitros/nextjs-fastapi/blob/main/next.config.js) to map any request to `/api/py/:path*` to the FastAPI API, which is hosted in the `/api` folder.\n\nOn localhost, the rewrite will be made to the `127.0.0.1:8000` port, which is where the FastAPI server is running.\n\nIn production, the FastAPI server is hosted as [Python serverless functions](https://vercel.com/docs/concepts/functions/serverless-functions/runtimes/python) on Vercel.\n\n## Demo\n\n\u003chttps://nextjs-fastapi-starter.vercel.app/\u003e\n\n## Deploy Your Own\n\nYou can clone \u0026 deploy it to Vercel with one click:\n\n[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fpsycho-baller%2Fnextjs-and-fastapi-backend%2Ftree%2Fmain)\n\n## Developing Locally\n\nYou can clone \u0026 create this repo with the following command\n\n```bash\nnpx create-next-app nextjs-fastapi --example \"https://github.com/psycho-baller/nextjs-and-fastapi-backend\"\n```\n\n## Getting Started\n\nFirst, install the dependencies:\n\n```bash\nnpm install\n# or\nyarn\n# or\npnpm install\n```\n\nInstall [uv](https://docs.astral.sh/uv/) for Python dependency management:\n\n```bash\ncurl -LsSf https://astral.sh/uv/install.sh | sh\n```\n\nThen, run the development server:\n\n```bash\nnpm run dev\n# or\nyarn dev\n# or\npnpm dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n\nThe FastApi server will be running on [http://127.0.0.1:8000](http://127.0.0.1:8000) – feel free to change the port in `package.json` (you'll also need to update it in `next.config.js`).\n\n## Learn More\n\nTo learn more about Next.js, take a look at the following resources:\n\n- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.\n- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.\n- [FastAPI Documentation](https://fastapi.tiangolo.com/) - learn about FastAPI features and API.\n\nYou can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelmecke%2Fminibiblio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhelmecke%2Fminibiblio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhelmecke%2Fminibiblio/lists"}