- 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
7 lines
202 B
Ruby
Executable File
7 lines
202 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
require_relative "../config/boot"
|
|
require "bundler/audit/cli"
|
|
|
|
ARGV.concat %w[ --config config/bundler-audit.yml ] if ARGV.empty? || ARGV.include?("check")
|
|
Bundler::Audit::CLI.start
|