{"id":42167237,"url":"https://github.com/ikunal-04/innpae","last_synced_at":"2026-01-26T21:15:56.756Z","repository":{"id":305556938,"uuid":"1023182380","full_name":"ikunal-04/innpae","owner":"ikunal-04","description":"Innpae is an AI-powered developer tool that turns natural-language product ideas into working backend code.   Think: Prompt → API → Database Schema → Zip Downloadable Project.","archived":false,"fork":false,"pushed_at":"2026-01-18T07:13:28.000Z","size":668,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-18T16:49:18.117Z","etag":null,"topics":["fastapi","jszip","nextjs","postgresql","prisma-orm","uvicorn"],"latest_commit_sha":null,"homepage":"https://innpae.com","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/ikunal-04.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":"2025-07-20T17:41:06.000Z","updated_at":"2026-01-18T07:13:31.000Z","dependencies_parsed_at":"2025-07-20T20:40:38.117Z","dependency_job_id":null,"html_url":"https://github.com/ikunal-04/innpae","commit_stats":null,"previous_names":["ikunal-04/agent","ikunal-04/innpae"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ikunal-04/innpae","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ikunal-04%2Finnpae","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ikunal-04%2Finnpae/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ikunal-04%2Finnpae/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ikunal-04%2Finnpae/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ikunal-04","download_url":"https://codeload.github.com/ikunal-04/innpae/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ikunal-04%2Finnpae/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28788366,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T21:13:08.818Z","status":"ssl_error","status_checked_at":"2026-01-26T21:13:08.448Z","response_time":59,"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":["fastapi","jszip","nextjs","postgresql","prisma-orm","uvicorn"],"created_at":"2026-01-26T21:15:55.996Z","updated_at":"2026-01-26T21:15:56.732Z","avatar_url":"https://github.com/ikunal-04.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Innpae 🚀\n\n**Innpae** is an AI-powered developer tool that turns natural-language product ideas into working backend code.  \nThink: **Prompt → API → Database Schema → Zip Downloadable Project**.\n\nIt is built as a fast-moving MVP to help founders and developers prototype real backends in minutes instead of days.\n\n---\n\n## Why Innpae?\n\nBuilding frontends is fast now.  \nSetting up a backend is still slow: auth, schemas, routes, configuration.\n\nInnpae removes that friction.\n\nYou describe your idea in plain English.  \nIt gives you a real backend codebase.\n\n### Use cases\n- Rapid SaaS MVPs\n- Hackathon projects\n- Startup backend bootstrapping\n- Learning backend architecture faster\n\n---\n\n## Features\n\n- Text prompt → backend structure generation\n- AI-powered schema and API route planning\n- Structured project folders\n- API + ORM boilerplate\n- Downloadable ZIP export\n- Stack customization (planned and partially implemented)\n\n\u003e This is an early-stage MVP. Some features are being actively built.\n\n---\n\n## Tech Stack\n\n- **Framework:** Next.js (App Router) + TypeScript\n- **Runtime:** Bun / Node.js\n- **ORM (planned):** Prisma\n- **LLM:** Gemini (or compatible LLM)\n- **File packaging:** JSZip (or similar)\n\n---\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js or Bun\n- Git installed\n- LLM API Key (if running locally with AI enabled)\n\n### Local Setup\n\n```bash\ngit clone https://github.com/ikunal-04/innpae.git\ncd innpae\n\nbun install\nbun dev\n```\n\nApp runs on:\n\n```bash\nhttp://localhost:3000\nUsage Flow\nOpen the web app.\n```\n\nEnter a product idea like:\n\n```bash\nA task manager where users can create projects and assign tasks.\nSelect your stack (DB / ORM / Framework) when available.\n\nSubmit the prompt.\n```\n\nThe system:\n- Generates schemas\n- Creates API routes\n- Structures folders\n- Download the ZIP.\n- Run it locally with the provided CLI commands.\n\n---\n\n## Project Structure\n\n```bash\n/\n├── app/              # Next.js App Router\n├── components/       # UI components\n├── lib/              # Core logic (LLM + codegen helpers)\n├── prisma/           # ORM schema (generated)\n├── public/           # Static files\n├── hooks/            # Custom hooks\n├── config/           # Environment config\n└── README.mdx\n```\n\n---\n\n## Roadmap\n\n- Planned and in-progress:\n - Full Gemini / LLM integration\n - Multi-stack support (MySQL, MongoDB, Postgres)\n - ORM choices (Prisma, Drizzle, TypeORM)\n - Real-time file viewer (like VSCode)\n - Live iframe preview of generated backend\n - Auth + user projects\n\n---\n\n## Contributing\n\nContributions are welcome.\n\n```bash\n1. Fork the repository\n2. Create a feature branch\n3. Commit your changes\n4. Open a pull request\nBe clean. Be precise. No sloppy code.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fikunal-04%2Finnpae","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fikunal-04%2Finnpae","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fikunal-04%2Finnpae/lists"}