{"id":19667193,"url":"https://github.com/vikdotdev/turbo-rails-study","last_synced_at":"2025-02-27T04:18:33.926Z","repository":{"id":53921159,"uuid":"521916185","full_name":"vikdotdev/turbo-rails-study","owner":"vikdotdev","description":null,"archived":false,"fork":false,"pushed_at":"2022-08-06T10:32:43.000Z","size":28,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-18T15:03:26.133Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Ruby","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/vikdotdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-08-06T10:32:42.000Z","updated_at":"2022-08-06T10:32:46.000Z","dependencies_parsed_at":"2022-08-13T04:20:39.228Z","dependency_job_id":null,"html_url":"https://github.com/vikdotdev/turbo-rails-study","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"thoughtbot/hotwire-example-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikdotdev%2Fturbo-rails-study","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikdotdev%2Fturbo-rails-study/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikdotdev%2Fturbo-rails-study/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikdotdev%2Fturbo-rails-study/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vikdotdev","download_url":"https://codeload.github.com/vikdotdev/turbo-rails-study/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240976322,"owners_count":19887464,"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":[],"created_at":"2024-11-11T16:31:03.788Z","updated_at":"2025-02-27T04:18:33.904Z","avatar_url":"https://github.com/vikdotdev.png","language":"Ruby","readme":"# Hotwire Example Template\n\nA collection of branches that transmit [HTML over the\nwire](https://hotwired.dev).\n\n[![Deploy to Heroku](https://www.herokucdn.com/deploy/button.png)][heroku-deploy-app]\n\n[heroku-deploy-app]: https://heroku.com/deploy?template=https://github.com/thoughtbot/hotwire-example-template/tree/main\n\n## How to read this repository\n\nThrough the power of incremental Git diffs, each of this repository's\n[branches][] provides a step-by-step demonstration of how to implement a feature\nor behavior.\n\nThis repository's [main][] branch serves as the root all of the other branches,\nand consists of a handful of commits generated by the Rails command line\ninterface.\n\nSome branches are works-in-progress. Others are more refined. Some noteworthy\nbranches include:\n\n* [hotwire-example-live-preview](https://github.com/thoughtbot/hotwire-example-template/tree/hotwire-example-live-preview)\n* [hotwire-example-typeahead-search](https://github.com/thoughtbot/hotwire-example-template/tree/hotwire-example-typeahead-search)\n* [hotwire-example-tooltip-fetch](https://github.com/thoughtbot/hotwire-example-template/tree/hotwire-example-tooltip-fetch)\n* [hotwire-example-stimulus-dynamic-forms](https://github.com/thoughtbot/hotwire-example-template/tree/hotwire-example-stimulus-dynamic-forms)\n* [hotwire-example-turbo-dynamic-forms](https://github.com/thoughtbot/hotwire-example-template/tree/hotwire-example-turbo-dynamic-forms)\n\nA branch's [README.md](./README.md) includes a prose explanation of the patterns\nat-play. When reading a branch's source code, read the changes commit-by-commit\neither on the branch comparison page (for example,\n[main...hotwire-example-live-preview][]), the branch's commits page (for\nexample, [hotwire-example-live-preview][]), or the branch's `README.md` file\n(for example, [hotwire-example-live-preview][README]).\n\nTo experiment with a branch on your own, clone the repository, check out the\nbranch, execute its set up script, start the local server, then visit\n\u003chttp://localhost:3000\u003e:\n\n```sh\nbin/setup\nbin/rails server\nopen http://localhost:3000\n```\n\n[branches]: https://github.com/thoughtbot/hotwire-example-template/branches/all\n[main]: https://github.com/thoughtbot/hotwire-example-template/tree/main\n[main...hotwire-example-live-preview]: https://github.com/thoughtbot/hotwire-example-template/compare/hotwire-example-live-preview\n[hotwire-example-live-preview]: https://github.com/thoughtbot/hotwire-example-template/commits/hotwire-example-live-preview\n[README]: https://github.com/thoughtbot/hotwire-example-template/blob/hotwire-example-live-preview/README.md\n\n## How to fork this repository\n\n⚠️ If you're hoping to fork this repository and periodically pull down upstream\nchanges, you're going to have a Bad Time. ⚠️\n\nEach branch builds its narrative through incremental changesets that are\nvisualized as Git diffs. It's not uncommon for code revisions to be made after a\nbranch is published. Changes are retroactively incorporated into the most\nappropriate commit available. In fact, histories are [rebased][] and rewritten\non a regular basis. In practice, these deviations from conventional Git\nworkflows make this repository a bad candidate for forking.\n\nWith that being said, if you're comfortable with [interactive rebasing][], the\n[CONTRIBUTING.md](./CONTRIBUTING.md) guide outlines some of the commands and\nprocedures used to create this repository's content.\n\n[rebased]: https://git-scm.com/book/en/v2/Git-Branching-Rebasing\n[interactive rebasing]: https://git-scm.com/docs/git-rebase#Documentation/git-rebase.txt---interactive\n\n## How to experiment with this repository\n\n[![Run on Repl.it](https://repl.it/badge/github/seanpdoyle/hotwire-example-template)](https://repl.it/github/seanpdoyle/hotwire-example-template)\n\nYou can fork the [@seanpdoyle/hotwire-example-template][] sandbox project on\n[replit.com][].\n\n[replit.com]: https://replit.com/\n[@seanpdoyle/hotwire-example-template]: https://replit.com/@seanpdoyle/hotwire-example-template\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvikdotdev%2Fturbo-rails-study","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvikdotdev%2Fturbo-rails-study","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvikdotdev%2Fturbo-rails-study/lists"}