Skip to content

Commit

Permalink
Install Tailwind
Browse files Browse the repository at this point in the history
  • Loading branch information
noracato committed Oct 15, 2024
1 parent ad8731a commit cf4730b
Show file tree
Hide file tree
Showing 9 changed files with 72 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,6 @@

# Ignore master key for decrypting credentials and more.
/config/master.key

/app/assets/builds/*
!/app/assets/builds/.keep
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,5 @@ group :development do
# Highlight the fine-grained location where an error occurred [https://github.com/ruby/error_highlight]
# gem "error_highlight", ">= 0.6.0", platforms: [:ruby]
end

gem "tailwindcss-rails", "~> 2.7"
13 changes: 13 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,18 @@ GEM
stimulus-rails (1.3.4)
railties (>= 6.0.0)
stringio (3.1.1)
tailwindcss-rails (2.7.9)
railties (>= 7.0.0)
tailwindcss-rails (2.7.9-aarch64-linux)
railties (>= 7.0.0)
tailwindcss-rails (2.7.9-arm-linux)
railties (>= 7.0.0)
tailwindcss-rails (2.7.9-arm64-darwin)
railties (>= 7.0.0)
tailwindcss-rails (2.7.9-x86_64-darwin)
railties (>= 7.0.0)
tailwindcss-rails (2.7.9-x86_64-linux)
railties (>= 7.0.0)
temple (0.10.3)
thor (1.3.2)
tilt (2.3.0)
Expand Down Expand Up @@ -304,6 +316,7 @@ DEPENDENCIES
rubocop-rspec
sprockets-rails
stimulus-rails
tailwindcss-rails (~> 2.7)
turbo-rails
tzinfo-data
web-console
Expand Down
2 changes: 2 additions & 0 deletions Procfile.dev
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
web: bin/rails server
css: bin/rails tailwindcss:watch
Empty file added app/assets/builds/.keep
Empty file.
1 change: 1 addition & 0 deletions app/assets/config/manifest.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
//= link_directory ../stylesheets .css
//= link_tree ../../javascript .js
//= link_tree ../../../vendor/javascript .js
//= link_tree ../builds
13 changes: 13 additions & 0 deletions app/assets/stylesheets/application.tailwind.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

/*
@layer components {
.btn-primary {
@apply py-2 px-4 bg-blue-200;
}
}
*/
16 changes: 16 additions & 0 deletions bin/dev
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/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 "$@"
22 changes: 22 additions & 0 deletions config/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
const defaultTheme = require('tailwindcss/defaultTheme')

module.exports = {
content: [
'./public/*.html',
'./app/helpers/**/*.rb',
'./app/javascript/**/*.js',
'./app/views/**/*.{erb,haml,html,slim}'
],
theme: {
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/container-queries'),
]
}

0 comments on commit cf4730b

Please sign in to comment.