{"id":30033649,"url":"https://github.com/productdevbook/better-nuxt-graphql-starter-kit","last_synced_at":"2025-08-12T03:03:30.258Z","repository":{"id":308589000,"uuid":"1033362703","full_name":"productdevbook/better-nuxt-graphql-starter-kit","owner":"productdevbook","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-06T18:06:19.000Z","size":93,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-06T19:41:07.608Z","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/productdevbook.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},"funding":{"github":["productdevbook"]}},"created_at":"2025-08-06T17:39:32.000Z","updated_at":"2025-08-06T18:28:41.000Z","dependencies_parsed_at":"2025-08-06T19:41:10.534Z","dependency_job_id":"50ce2b19-e0dd-4367-8551-e32176ab4d7f","html_url":"https://github.com/productdevbook/better-nuxt-graphql-starter-kit","commit_stats":null,"previous_names":["productdevbook/better-nuxt-graphql-starter-kit"],"tags_count":null,"template":true,"template_full_name":null,"purl":"pkg:github/productdevbook/better-nuxt-graphql-starter-kit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productdevbook%2Fbetter-nuxt-graphql-starter-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productdevbook%2Fbetter-nuxt-graphql-starter-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productdevbook%2Fbetter-nuxt-graphql-starter-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productdevbook%2Fbetter-nuxt-graphql-starter-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/productdevbook","download_url":"https://codeload.github.com/productdevbook/better-nuxt-graphql-starter-kit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/productdevbook%2Fbetter-nuxt-graphql-starter-kit/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269169620,"owners_count":24372062,"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-08-06T02:00:09.910Z","response_time":99,"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":[],"created_at":"2025-08-06T22:50:16.255Z","updated_at":"2025-08-06T22:50:19.619Z","avatar_url":"https://github.com/productdevbook.png","language":"TypeScript","funding_links":["https://github.com/sponsors/productdevbook"],"categories":[],"sub_categories":[],"readme":"# Better Nuxt GraphQL Starter Kit\n\n\u003e ⚠️ **Work in Progress** - This project is currently under active development and not yet ready for production use.\n\nA modern, production-ready starter template built with **Nuxt 4**, featuring GraphQL API, authentication, database management, file uploads, and state management.\n\n## 🚀 Features\n\n- **[Nuxt 4](https://nuxt.com)** - The latest version of the Vue.js meta-framework\n- **[Nitro GraphQL](https://github.com/productdevbook/nitro-graphql)** - Native GraphQL support for Nitro server\n- **[Better Auth](https://better-auth.com)** - Modern authentication system with social providers\n- **[Drizzle ORM](https://orm.drizzle.team)** - TypeScript ORM with SQL-like syntax\n- **[Pinia Colada](https://pinia-colada.vuejs.org)** - Smart data fetching and caching for Pinia\n- **File Upload** - Built-in image/file upload handling with optimization\n- **TypeScript** - Full type safety across the stack\n- **Auto-imports** - Components, composables, and utilities auto-imported\n- **SSR/SSG Ready** - Server-side rendering and static generation support\n\n## 📋 Prerequisites\n\n- Node.js 22+ \n- pnpm +10.13 (recommended) or npm/yarn\n- PostgreSQL database (for Drizzle ORM)\n\n## 🛠️ Installation\n\n1. **Clone the repository**\n```bash\ngit clone https://github.com/productdevbook/better-nuxt-graphql-starter-kit.git\ncd better-nuxt-graphql-starter-kit\n```\n\n2. **Install dependencies**\n```bash\npnpm install\n```\n\n3. **Environment Setup**\n\nCreate a `.env` file in the root directory:\n\n```env\n# Database\nDATABASE_URL=\"postgresql://user:password@localhost:5432/dbname\"\n\n# Better Auth\nAUTH_SECRET=\"your-auth-secret-here\"\nAUTH_URL=\"http://localhost:3000\"\n\n# OAuth Providers (optional)\nGITHUB_CLIENT_ID=\"\"\nGITHUB_CLIENT_SECRET=\"\"\n\n# File Upload\nUPLOAD_DIR=\"./uploads\"\nMAX_FILE_SIZE=\"10485760\"  # 10MB in bytes\n```\n\n4. **Database Setup**\n\nInitialize the database with Drizzle:\n\n```bash\npnpm db:generate   # Generate migrations\npnpm db:migrate    # Run migrations\npnpm db:studio     # Open Drizzle Studio (optional)\n```\n\n## 🚀 Development\n\nStart the development server:\n\n```bash\npnpm dev\n```\n\nThe application will be available at `http://localhost:3000`\n\n### Available Scripts\n\n```bash\npnpm dev          # Start development server\npnpm build        # Build for production\npnpm preview      # Preview production build\npnpm generate     # Generate static site\npnpm typecheck    # Run TypeScript type checking\npnpm lint         # Run ESLint\npnpm lint:fix     # Fix ESLint issues\n```\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🙏 Acknowledgments\n\n- [Nuxt Team](https://nuxt.com) for the amazing framework\n- [UnJS](https://unjs.io) for Nitro and ecosystem tools\n- [Better Auth](https://better-auth.com) for authentication\n- [Drizzle Team](https://orm.drizzle.team) for the ORM\n- [Vue Team](https://vuejs.org) for Vue.js and Pinia\n\n## 📞 Support\n\n- 🐛 Issues: [GitHub Issues](https://github.com/productdevbook/better-nuxt-graphql-starter-kit/issues)\n\n---\n\nBuilt with ❤️ by [productdevbook](https://github.com/productdevbook)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproductdevbook%2Fbetter-nuxt-graphql-starter-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fproductdevbook%2Fbetter-nuxt-graphql-starter-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproductdevbook%2Fbetter-nuxt-graphql-starter-kit/lists"}