This is a collection of templates for Rails projects.
rails new PROJECT_NAME --template https://raw.githubusercontent.com/RailsQuest/rails-templates/refs/heads/master/default.rbgit clone https://github.com/RailsQuest/rails-templates.git
cd rails-templates
rails new PROJECT_NAME --template default.rbJust use the Rails defaults! 😎
rails new PROJECT_NAME --template https://raw.githubusercontent.com/RailsQuest/rails-templates/refs/heads/master/default.rbI recommend using propshaft since it's the new default asset pipeline in Rails 8. That's it! 😎
rails new PROJECT_NAME --asset-pipeline propshaft --template https://raw.githubusercontent.com/RailsQuest/rails-templates/refs/heads/master/default.rbThe default template for Rails projects.
It includes:
- Authentication with authentication-zero
- Standard for Linting
- Optional: Litestack for production sqlite (see litestack)
- Check out fly.io's writeup on how and why you might want to use sqlite in production on fly.io