{"id":14955281,"url":"https://github.com/gtkvn/kaze","last_synced_at":"2025-10-24T07:31:04.578Z","repository":{"id":243508215,"uuid":"812526125","full_name":"gtkvn/kaze","owner":"gtkvn","description":"Opinionated minimal Rails authentication scaffolding with Hotwire, React, or Vue + Tailwind.","archived":false,"fork":false,"pushed_at":"2025-01-20T04:34:22.000Z","size":321,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-29T08:41:38.834Z","etag":null,"topics":["hotwire","inertiajs","rails","react","ruby","ruby-on-rails","scaffolding","vue"],"latest_commit_sha":null,"homepage":"","language":"Ruby","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/gtkvn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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}},"created_at":"2024-06-09T06:29:28.000Z","updated_at":"2025-01-22T07:53:57.000Z","dependencies_parsed_at":"2024-06-28T02:52:08.565Z","dependency_job_id":"4ec6b8b1-1fa9-40d5-a5f0-c394f381d465","html_url":"https://github.com/gtkvn/kaze","commit_stats":{"total_commits":74,"total_committers":2,"mean_commits":37.0,"dds":0.04054054054054057,"last_synced_commit":"a2330549253734110fd5c859b804c8fa528cb384"},"previous_names":["gtkvn/kaze"],"tags_count":17,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gtkvn%2Fkaze","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gtkvn%2Fkaze/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gtkvn%2Fkaze/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gtkvn%2Fkaze/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gtkvn","download_url":"https://codeload.github.com/gtkvn/kaze/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237932070,"owners_count":19389560,"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":["hotwire","inertiajs","rails","react","ruby","ruby-on-rails","scaffolding","vue"],"created_at":"2024-09-24T13:10:48.625Z","updated_at":"2025-10-24T07:31:03.427Z","avatar_url":"https://github.com/gtkvn.png","language":"Ruby","funding_links":[],"categories":["Ruby"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003cimg src=\"/art/logo.svg\" alt=\"Logo Kaze\"\u003e\u003c/p\u003e\n\n# Kaze\n\nHeavily inspired by [Laravel Breeze](https://github.com/laravel/breeze), this gem offers authentication and application starter kits to give you a head start building your new [Rails](https://rubyonrails.org) application. These kits automatically scaffold your application with the routes, controllers, and views you need to register and authenticate your application's users.\n\n[Kaze](https://github.com/gtkvn/kaze) is a opinionated minimal, simple implementation of all authentication features that a modern web application should have, including login, registration, password reset, email verification. In addition, Kaze includes a simple \"profile\" page where the user may update their name, email address, and password.\n\nKaze provides scaffolding options based on [Hotwire](https://hotwired.dev) or [Inertia](https://inertiajs.com), with the choice of using Vue or React for the Inertia-based scaffolding.\n\n## Installation\n\nBefore creating your first project powered by Kaze, make sure that your local machine has Ruby installed. Ruby can be installed in minutes via [mise](https://mise.jdx.dev).\n\n```\nmise use -g ruby@3.3\n```\n\nAfter you have installed Ruby, you may install `rails` and `kaze` gems globally:\n\n```\ngem install rails\ngem install kaze\n```\n\nThen, you may create a new Rails application:\n\n```\nrails new kaze-example-app\ncd kaze-example-app\n```\n\nOnce the project has been created, you may scaffold your application using one of the Kaze \"stacks\" discussed in the documentation below.\n\n## Kaze and Hotwire\n\nThe default Kaze \"stack\" is the Hotwire stack. Hotwire is a powerful way to building dynamic, reactive, front-end UIs primarily using Ruby and ERB templates without using much JavaScript by sending HTML instead of JSON over the wire.\n\nThe Hotwire stack may be installed by invoking the `kaze install` command with no other additional arguments inside your app directory. This command publishes the authentication, views, routes, controllers, and other resources to your application.\n\n```\nkaze install\n```\n\nAfter Kaze's scaffolding is installed, you may start your application:\n\n```\nbin/setup\nbin/dev\n```\n\nNext, you may navigate to your application's `/login` or `/register` URLs in your web browser. All of Kaze's routes are defined within the `config/routes.rb` file.\n\n## Kaze and React / Vue\n\nKaze offers React and Vue scaffolding via an Inertia frontend implementation. Inertia allows you to build modern, single-page React and Vue applications using classic server-side routing and controllers.\n\nInertia lets you enjoy the frontend power of React and Vue combined with the incredible backend productivity of Rails and lightning-fast Vite compilation. To use an Inertia stack, specify `react` or `vue` as your desired stack when executing the `kaze install` command:\n\n```\nkaze install react\n\n# Or...\n\nkaze install vue\n```\n\nAfter Kaze's scaffolding is installed, you may start your application:\n\n```\nbin/setup\nbin/dev\n```\n\nNext, you may navigate to your application's `/login` or `/register` URLs in your web browser. All of Kaze's routes are defined within the `config/routes.rb` file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgtkvn%2Fkaze","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgtkvn%2Fkaze","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgtkvn%2Fkaze/lists"}