A rapid Rails 6 application template for personal use. This particular template utilizes Tailwind CSS, a utility-first CSS framework for rapid UI development.
Need version 5.2.3 support? Check out this branch
Tailwind depends on Webpack so this also comes bundled with webpacker support.
Inspired heavily by Jumpstart from Chris Oliver. Credits to him for a bunch here.
Be sure to also check out Jumpstart Pro to save loads of time creating your next Rails application. Chris, Jason, and I teamed up on it.
With Rails 6 we have webpacker by default now. Using PostCSS we can install Tailwind as a base CSS framework to harness. I prefer Tailwind due to it's un-opinionated approach.
When creating a new rails app simply pass the template file through.
$ rails new sample_app -d <postgresql, mysql, sqlite3> -m template.rb
- Webpack support + Tailwind CSS configured in the
app/javascript
directory. - Devise with a new
name
field already migrated in. The name field maps to thefirst_name
andlast_name
fields in the database thanks to thename_of_person
gem. - Enhanced views using Tailwind CSS.
- Support for Friendly IDs thanks to the handy friendly_id gem. Note that you'll still need to do some work inside your models for this to work. This template installs the gem and runs the associated generator.
- Optional Foreman support thanks to a
Procfile
. Once you scaffold the template, runforeman start
to initalize and head tolocahost:5000
to getrails server
,sidekiq
andbin/webpack-dev-server
running all in one terminal instance. Note: Webpack will still compile down with justrails server
if you don't want to use Foreman. Foreman needs to be installed as a global gem on your system for this to work. i.e.gem install foreman
- A custom scaffold view template when generating theme resources (Work in progress).
- Git initialization out of the box
- PurgeCSS configuration to help with CSS file sizes
- Custom defaults for button and form elements
$ rails server
Run foreman start
. Head to locahost:5000
to see your app. You'll have hot reloading on js
and css
and scss/sass
files by default. Feel free to configure to look for more to compile reload as your app scales.
📹 https://youtu.be/kuKMRl8nj2w - A bit dated now that Rails 6 is out now.