{"id":29978978,"url":"https://github.com/saicode-dev/nuxt-starter-template","last_synced_at":"2026-02-15T03:03:19.986Z","repository":{"id":303298981,"uuid":"998107251","full_name":"SaiCode-DEV/Nuxt-Starter-Template","owner":"SaiCode-DEV","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-07T11:01:16.000Z","size":290,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-07T02:03:32.562Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vue","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/SaiCode-DEV.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}},"created_at":"2025-06-07T21:56:19.000Z","updated_at":"2025-07-07T11:01:19.000Z","dependencies_parsed_at":"2025-07-06T22:18:27.074Z","dependency_job_id":"50f3a4c1-fbfe-4f5c-a538-c0da18c3462b","html_url":"https://github.com/SaiCode-DEV/Nuxt-Starter-Template","commit_stats":null,"previous_names":["saicode-dev/nuxt-starter-template"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/SaiCode-DEV/Nuxt-Starter-Template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SaiCode-DEV%2FNuxt-Starter-Template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SaiCode-DEV%2FNuxt-Starter-Template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SaiCode-DEV%2FNuxt-Starter-Template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SaiCode-DEV%2FNuxt-Starter-Template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SaiCode-DEV","download_url":"https://codeload.github.com/SaiCode-DEV/Nuxt-Starter-Template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SaiCode-DEV%2FNuxt-Starter-Template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29466925,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T01:01:38.065Z","status":"online","status_checked_at":"2026-02-15T02:00:07.449Z","response_time":118,"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-04T12:42:59.837Z","updated_at":"2026-02-15T03:03:19.973Z","avatar_url":"https://github.com/SaiCode-DEV.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SaiCode's Nuxt Starter Template\n\nA modern, full-stack starter template built with cutting-edge technologies. Everything you need to build amazing web applications with Nuxt 3, Vuetify, and authentication out of the box.\n\n## 🚀 Features\n\n- **Modern Tech Stack**: Built with Nuxt 3, Vuetify, and TypeScript for a robust development experience\n- **Authentication System**: Secure user authentication and session management\n- **Responsive Design**: Beautiful Material Design interface that works on all devices\n- **Type Safety**: Full TypeScript support for enhanced developer experience\n- **Database Integration**: Prisma ORM for type-safe database operations\n- **Modern Tooling**: ESLint, hot reloading, and optimized build process\n\n## 🛠️ Technologies\n\n- **[Nuxt 3](https://nuxt.com/)** - The intuitive Vue framework with SSR and static generation\n- **[Vuetify](https://vuetifyjs.com/)** - Beautiful Material Design components for Vue.js\n- **[TypeScript](https://www.typescriptlang.org/)** - Type safety and enhanced developer experience\n- **[Prisma ORM](https://www.prisma.io/)** - Type-safe database access with modern ORM capabilities\n- **Authentication** - Secure user management system\n- **Docker** - Containerized deployment support\n\n## 🚀 Quick Start\n\n### Prerequisites\n\n- Node.js 18+\n- npm or yarn\n- Docker (optional, for database)\n\n### Installation\n\n1. **Clone \u0026 Install Dependencies**\n\n   ```bash\n   git clone \u003crepository-url\u003e\n   cd your-project-name\n   npm install\n   ```\n\n2. **Configure Environment**\n\n   Copy the environment template and configure your variables:\n\n   ```bash\n   cp .env.example .env\n   ```\n\n   Set up your environment variables for database and authentication.\n\n3. **Database Setup**\n\n   This template uses **PostgreSQL** as the database. You have several options:\n\n   **Option A: Using Docker (Recommended)**\n\n   ```bash\n   docker-compose up -d\n   ```\n\n   **Option B: Local PostgreSQL Installation**\n\n   - Install PostgreSQL locally on your machine\n   - Create a database named `nuxt`\n   - Update your `.env` file with your local database credentials\n\n   After setting up PostgreSQL, run database migrations:\n\n   ```bash\n   npx prisma migrate dev\n   ```\n\n4. **Start Development Server**\n\n   ```bash\n   npm run dev\n   ```\n\n   Navigate to `http://localhost:3000` to see your application running.\n\n## 📦 Available Scripts\n\n```bash\n# Development\nnpm run dev          # Start development server\n\n# Building\nnpm run build        # Build for production\nnpm run preview      # Preview production build locally\n\n# Database\nnpx prisma studio    # Open Prisma Studio database GUI\nnpx prisma migrate dev    # Run database migrations\n\n# Code Quality\nnpm run lint         # Run ESLint\nnpm run type-check   # Run TypeScript checks\n```\n\n## 🐳 Docker Deployment\n\nThe project includes Docker configuration for easy deployment:\n\n```bash\n# Build and start all services\ndocker-compose up -d\n\n# View logs\ndocker-compose logs -f\n\n# Stop services\ndocker-compose down\n```\n\n## 📁 Project Structure\n\n```\nyour-project-name/\n├── components/          # Reusable Vue components\n├── composables/         # Vue composables and utilities\n├── layouts/            # Application layouts\n├── pages/              # File-based routing pages\n├── prisma/             # Database schema and migrations\n├── server/             # Server-side API routes\n├── stores/             # Pinia state management\n└── public/             # Static assets\n```\n\n## 🤝 Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## 📖 Documentation\n\nFor more detailed information:\n\n- [Nuxt 3 Documentation](https://nuxt.com/docs)\n- [Vuetify Documentation](https://vuetifyjs.com/)\n- [Prisma Documentation](https://www.prisma.io/docs)\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n---\n\nBuilt with ❤️ by SaiCode\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaicode-dev%2Fnuxt-starter-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaicode-dev%2Fnuxt-starter-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaicode-dev%2Fnuxt-starter-template/lists"}