{"id":17224617,"url":"https://github.com/colinespinas/starter","last_synced_at":"2025-10-25T02:03:13.215Z","repository":{"id":182891861,"uuid":"669257853","full_name":"ColinEspinas/starter","owner":"ColinEspinas","description":"Battery included Nuxt based starter template for my projects. Created to get a great DX, UX and UI as fast as possible.","archived":false,"fork":false,"pushed_at":"2024-11-13T18:42:54.000Z","size":1118,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-14T00:49:54.609Z","etag":null,"topics":["devbox","drizzle-orm","nuxt3","radix-vue","starter-template","stripe","tailwind","umami-analytics","vue"],"latest_commit_sha":null,"homepage":"https://starter-colinespinas.vercel.app/","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/ColinEspinas.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":"2023-07-21T18:32:14.000Z","updated_at":"2024-11-13T18:42:59.000Z","dependencies_parsed_at":"2024-05-15T12:15:54.793Z","dependency_job_id":"10392fec-146a-49ad-a372-4b13009e8799","html_url":"https://github.com/ColinEspinas/starter","commit_stats":null,"previous_names":["colinespinas/starter"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/ColinEspinas/starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColinEspinas%2Fstarter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColinEspinas%2Fstarter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColinEspinas%2Fstarter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColinEspinas%2Fstarter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ColinEspinas","download_url":"https://codeload.github.com/ColinEspinas/starter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ColinEspinas%2Fstarter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":280893610,"owners_count":26409280,"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-10-25T02:00:06.499Z","response_time":81,"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":["devbox","drizzle-orm","nuxt3","radix-vue","starter-template","stripe","tailwind","umami-analytics","vue"],"created_at":"2024-10-15T04:11:34.872Z","updated_at":"2025-10-25T02:03:13.197Z","avatar_url":"https://github.com/ColinEspinas.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Starter\n\nBattery included Nuxt based starter template for my projects. Created to get a great DX, UX and UI as fast as possible.\n\n## Main Features\n\n- 🛡️ Strongly-typed from database to UI components\n- 🔐 Secure authentication system with flexible roles and permissions\n- 📈 GDPR \u0026 CCPA compliant analytics\n- 💸 Payment processing\n- 🌍 i18n support\n\n## Built with\n\n- [Nuxt](https://nuxt.com/)\n- [Tailwind](https://tailwindcss.com/) + [Radix Vue](https://www.radix-vue.com/)\n- [Nuxt icon](https://github.com/nuxt/icon) + [Phosphor icons](https://phosphoricons.com/)\n- [Drizzle](https://orm.drizzle.team/)\n- [Kinde](https://www.kinde.com/)\n- [Umami](https://umami.is/)\n- [Stripe](https://stripe.com/)\n- [Tolgee](https://tolgee.io/)\n\n## Setup\n\nThis project uses [devbox](https://www.jetpack.io/devbox/docs/) to provide a consistent development environment. Make sure you have it [installed](https://www.jetpack.io/devbox/docs/installing_devbox/) before continuing.\n\nOnce you have devbox installed, run the following commands to get started:\n\n```bash\n# Enter devbox shell\n\u003e devbox shell\n\n# Install package managers and dependencies\n\u003e pnpm install\n\n# Init postgres and create dev database\n\u003e devbox run db:init\n\u003e devbox run db:up\n\u003e devbox run db:create\n\n# Generate migrations (needed if you deleted .drizzle to reset the migrations)\n\u003e pnpm migration:generate\n\n# Run migrations\n\u003e pnpm migration:run\n\n# Start the app\n\u003e pnpm dev\n\n# (Optional) Start Drizzle studio\n\u003e pnpm studio\n```\n\n## Development\n\nTo get the project running locally, you'll need to start the app and the database:\n\n```bash\n# Enter devbox shell\n\u003e devbox shell\n\n# Start the database\n\u003e devbox run db:up\n\n# Start the app\n\u003e pnpm dev\n```\n\nTo stop the database, run:\n\n```bash\n\u003e devbox services stop postgresql\n```\n\n### Migrations\n\nUsing drizzle as an ORM, we have a lot of tools to manage database migrations:\n\n```bash\n# Generate new migrations\npnpm migration:generate\n\n# Drop existing migrations\npnpm migration:drop\n\n# Pull migrations from database\npnpm migration:pull\n\n# Run migrations\npnpm migration:run\n```\n\n## Deployment\n\nTODO: Add deployment instructions\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcolinespinas%2Fstarter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcolinespinas%2Fstarter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcolinespinas%2Fstarter/lists"}