- Add tailwindcss-rails gem to Gemfile - Create application.tailwind.css for Tailwind styles - Update Procfile.dev for Tailwind CSS watch command - Add demo action and view for showcasing features - Update application layout to use Tailwind CSS classes - Refactor footer and header for improved styling This commit introduces Tailwind CSS for styling the application, enhancing the UI with utility-first CSS. A new demo page is also added to showcase the application features.
17 lines
379 B
Bash
Executable File
17 lines
379 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
if ! gem list foreman -i --silent; then
|
|
echo "Installing foreman..."
|
|
gem install foreman
|
|
fi
|
|
|
|
# Default to port 3000 if not specified
|
|
export PORT="${PORT:-3000}"
|
|
|
|
# Let the debug gem allow remote connections,
|
|
# but avoid loading until `debugger` is called
|
|
export RUBY_DEBUG_OPEN="true"
|
|
export RUBY_DEBUG_LAZY="true"
|
|
|
|
exec foreman start -f Procfile.dev "$@"
|