{"id":15651437,"url":"https://github.com/manchenkoff/breeze-nuxt","last_synced_at":"2025-03-17T14:14:52.796Z","repository":{"id":234773904,"uuid":"789490891","full_name":"manchenkoff/breeze-nuxt","owner":"manchenkoff","description":"An application / authentication starter kit frontend in Nuxt for Laravel Breeze.","archived":false,"fork":false,"pushed_at":"2025-03-01T15:36:04.000Z","size":1143,"stargazers_count":66,"open_issues_count":1,"forks_count":4,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-01T16:29:31.922Z","etag":null,"topics":["authentication","breeze","laravel","nuxt","sanctum"],"latest_commit_sha":null,"homepage":"","language":"Vue","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/manchenkoff.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"manchenkoff","thanks_dev":"manchenkoff","buy_me_a_coffee":"manchenkoff"}},"created_at":"2024-04-20T17:42:49.000Z","updated_at":"2025-03-01T15:36:07.000Z","dependencies_parsed_at":"2024-04-30T23:31:36.351Z","dependency_job_id":"ef9c8e8d-fe39-4bbf-b579-947b4b13d4c1","html_url":"https://github.com/manchenkoff/breeze-nuxt","commit_stats":null,"previous_names":["manchenkoff/breeze-nuxt"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manchenkoff%2Fbreeze-nuxt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manchenkoff%2Fbreeze-nuxt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manchenkoff%2Fbreeze-nuxt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/manchenkoff%2Fbreeze-nuxt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/manchenkoff","download_url":"https://codeload.github.com/manchenkoff/breeze-nuxt/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244047646,"owners_count":20389206,"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","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":["authentication","breeze","laravel","nuxt","sanctum"],"created_at":"2024-10-03T12:38:26.861Z","updated_at":"2025-03-17T14:14:52.769Z","avatar_url":"https://github.com/manchenkoff.png","language":"Vue","funding_links":["https://github.com/sponsors/manchenkoff","https://thanks.dev/manchenkoff","https://buymeacoffee.com/manchenkoff"],"categories":["Vue"],"sub_categories":[],"readme":"# Laravel Breeze - Nuxt Edition\n\nThis repository is an implementation of the [Laravel Breeze](https://laravel.com/docs/starter-kits) application / authentication starter kit frontend in [Nuxt](https://nuxt.com/) with [Nuxt UI](https://ui.nuxt.com/). All of the authentication boilerplate is already written for you - powered by [Laravel Sanctum](https://laravel.com/docs/sanctum) and [nuxt-auth-sanctum](https://nuxt.com/modules/nuxt-auth-sanctum) module, allowing you to quickly begin pairing your beautiful [Nuxt UI](https://ui.nuxt.com/) frontend with a powerful Laravel backend. As a bonus, this project also includes a [nuxt-laravel-echo](https://github.com/manchenkoff/nuxt-laravel-echo) integration to work with Laravel Broadcasting.\n\n## Installation\n\nThis project requires a proper Laravel Breeze API template to work with. Follow the guide below to create a new project and link it with Nuxt frontend.\n\n### Laravel Breeze API\n\n**Easy way 🚀**\n\nYou can always use pre-configured template to start working immediately - [Breeze API](https://github.com/manchenkoff/breeze-api) or you can follow the steps below to create a new Laravel project and configure it manually.\n\n**Not easy way 📚**\n\nFirst, you will need follow one of the guides below:\n- Create with Composer - [Creating a Laravel Project](https://laravel.com/docs/11.x#creating-a-laravel-project)\n- Create with Docker - [Docker Installation Using Sail](https://laravel.com/docs/11.x#docker-installation-using-sail)\n\nAfter you have your Laravel project ready, you can install Laravel Breeze, please refer to the [official documentation](https://laravel.com/docs/11.x/starter-kits#breeze-and-next).\n\n**💡 Note:** Make sure to run all database migrations and check that the API is available at `http://localhost:8000` or `http://localhost:80` (when using Laravel Sail).\n\n**Configure existing Laravel project**\n\nIf you already have a Laravel project and want to add Breeze w/ Sanctum to it, you can check this commit to see what files were added/changed and adjust your project accordingly: [Add Laravel Breeze w/ Sanctum](https://github.com/manchenkoff/breeze-api/commit/09c6586fc5f2ca84e467fe443fa7cfddbd8f7338).\n\n### Nuxt Breeze\n\nTo start working with Nuxt frontend, you need to clone this repository and install dependencies:\n\n```bash\ngit clone https://github.com/manchenkoff/breeze-nuxt\n```\n\nFor dependencies you should use [pnpm](https://pnpm.io/):\n\n```bash\npnpm install\n```\n\nConfigure your `.env` file:\n\n```bash\nNUXT_PUBLIC_SANCTUM_BASE_URL=http://localhost:8000 # or your Laravel API URL\n```\n\nOnce configuration is done and you have your Laravel API running, you can start the Nuxt frontend:\n\n```bash\npnpm dev\n```\n\n## Development\n\nLook at [Nuxt docs](https://nuxt.com/docs/getting-started/introduction) and [Nuxt UI docs](https://ui.nuxt.com) to learn more about technologies used in this template.\n\n### Code Style and Linting\n\nRun ESLint to check for issues in the code:\n\n```bash\npnpm lint\n```\n\nOr automatically fix issues:\n\n```bash\npnpm lint:fix\n```\n\n### Start Server\n\nStart the development server on `http://localhost:3000`:\n\n```bash\npnpm dev\n```\n\n### Production\n\nBuild the application for production:\n\n```bash\npnpm build\n```\n\nLocally preview production build:\n\n```bash\npnpm preview\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanchenkoff%2Fbreeze-nuxt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmanchenkoff%2Fbreeze-nuxt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmanchenkoff%2Fbreeze-nuxt/lists"}