- Generate Rails 8.1 app with PostgreSQL and TailwindCSS - Add docker-compose.yml (postgres:17) for local database - Configure database.yml to connect to Dockerized Postgres via env vars - Add Pages#home root route, application layout, and navbar partial
9 lines
266 B
Ruby
Executable File
9 lines
266 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
require "rubygems"
|
|
require "bundler/setup"
|
|
|
|
# Explicit RuboCop config increases performance slightly while avoiding config confusion.
|
|
ARGV.unshift("--config", File.expand_path("../.rubocop.yml", __dir__))
|
|
|
|
load Gem.bin_path("rubocop", "rubocop")
|