Skip to content

Commit f01180f

Browse files
committed
doc: improve README
- add table of contents - new troubleshooting section on docker/tty - add "commands" synopsis - clarify language in a few sections
1 parent 904facc commit f01180f

File tree

2 files changed

+97
-18
lines changed

2 files changed

+97
-18
lines changed

README.md

Lines changed: 85 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,32 @@
22

33
[Tailwind CSS](https://tailwindcss.com) is a utility-first CSS framework packed with classes like flex, pt-4, text-center and rotate-90 that can be composed to build any design, directly in your markup.
44

5+
<!-- regenerate TOC with `rake format:toc` -->
6+
7+
<!-- toc -->
8+
9+
- [Installation](#installation)
10+
* [Using a local installation of `tailwindcss`](#using-a-local-installation-of-tailwindcss)
11+
- [Developing with Tailwindcss](#developing-with-tailwindcss)
12+
* [Configuration and commands](#configuration-and-commands)
13+
* [Building for production](#building-for-production)
14+
* [Building for testing](#building-for-testing)
15+
* [Building unminified assets](#building-unminified-assets)
16+
* [Live rebuild](#live-rebuild)
17+
* [Using with PostCSS](#using-with-postcss)
18+
* [Custom inputs or outputs](#custom-inputs-or-outputs)
19+
- [Troubleshooting](#troubleshooting)
20+
* [Running in a docker container exits prematurely](#running-in-a-docker-container-exits-prematurely)
21+
* [Conflict with sassc-rails](#conflict-with-sassc-rails)
22+
* [Class names must be spelled out](#class-names-must-be-spelled-out)
23+
* [ERROR: Cannot find the tailwindcss executable for &lt;supported platform&gt;](#error-cannot-find-the-tailwindcss-executable-for-ltsupported-platformgt)
24+
* ["No such file or directory" running on Alpine (musl)](#no-such-file-or-directory-running-on-alpine-musl)
25+
* [Using asset-pipeline assets](#using-asset-pipeline-assets)
26+
* [Conflict with pre-existing asset pipeline stylesheets](#conflict-with-pre-existing-asset-pipeline-stylesheets)
27+
- [License](#license)
28+
29+
<!-- tocstop -->
30+
531
## Installation
632

733
With Rails 7 you can generate a new application preconfigured with Tailwind by using `--css tailwind`. If you're adding Tailwind later, you need to:
@@ -24,27 +50,56 @@ Supported platforms are:
2450

2551
### Using a local installation of `tailwindcss`
2652

27-
If you are not able to use the vendored standalone executables (for example, if you're on an unsupported platform), you can use a local installation of the `tailwindcss` executable by setting an environment variable named `TAILWINDCSS_INSTALL_DIR` to the directory containing the executable.
53+
If you are not able to use the vendored standalone executables (for example, if you're on an unsupported platform), you can use a local installation of the `tailwindcss` executable by setting an environment variable named `TAILWINDCSS_INSTALL_DIR` to the directory path containing the executable.
2854

29-
For example, if you've installed `tailwindcss` so that the executable is found at `/node_modules/bin/tailwindcss`, then you should set your environment variable like so:
55+
For example, if you've installed `tailwindcss` so that the executable is found at `/path/to/node_modules/bin/tailwindcss`, then you should set your environment variable like so:
3056

3157
``` sh
3258
TAILWINDCSS_INSTALL_DIR=/path/to/node_modules/bin
3359
```
3460

35-
This also works with relative paths. If you've installed into your app's directory at `./node_modules/.bin/tailwindcss`:
61+
or, for relative paths like `./node_modules/.bin/tailwindcss`:
3662

3763
``` sh
3864
TAILWINDCSS_INSTALL_DIR=node_modules/.bin
3965
```
4066

67+
4168
## Developing with Tailwindcss
4269

43-
### Configuration
70+
### Configuration and commands
71+
72+
#### Configuration file: `config/tailwind.config.js`
4473

4574
You can customize the Tailwind build through the `config/tailwind.config.js` file, just like you would if Tailwind was running in a traditional node installation. All the first-party plugins are supported.
4675

47-
The installer will create your Tailwind input file in `app/assets/stylesheets/application.tailwind.css`. This is where you import the plugins you want to use, and where you can setup your custom `@apply` rules. When you run `rails tailwindcss:build`, this input file will be used to generate the output in `app/assets/builds/tailwind.css`. That's the output CSS that you'll include in your app (the installer automatically configures this, alongside the Inter font as well).
76+
#### Input file: `app/assets/stylesheets/application.tailwind.css`
77+
78+
The installer will generate a Tailwind input file in `app/assets/stylesheets/application.tailwind.css`. This is where you import the plugins you want to use, and where you can setup your custom `@apply` rules.
79+
80+
#### Output file: `app/assets/builds/tailwind.css`
81+
82+
When you run `rails tailwindcss:build`, the input file will be used to generate the output in `app/assets/builds/tailwind.css`. That's the output CSS that you'll include in your app (the installer automatically configures this, alongside the Inter font as well).
83+
84+
#### Commands
85+
86+
This gem makes several Rails tasks available, some of which have multiple options which can be combined.
87+
88+
Synopsis:
89+
90+
- `bin/rails tailwindcss:install` - installs the configuration file, output file, and `Procfile.dev`
91+
- `bin/rails tailwindcss:build` - generate the output file
92+
- `bin/rails tailwindcss:build[debug]` - generate unminimized output
93+
- `bin/rails tailwindcss:watch` - start live rebuilds, generating output on file changes
94+
- `bin/rails tailwindcss:watch[debug]` - generate unminimized output
95+
- `bin/rails tailwindcss:watch[poll]` - for systems without file system events
96+
- `bin/rails tailwindcss:watch[always]` - for systems without TTY (e.g., some docker containers)
97+
98+
Note that you can combine task options, e.g. `rails tailwindcss:watch[debug,poll]`.
99+
100+
This gem also makes available a Puma plugin to manage a live rebuild process when you run `rails server` (see "Live Rebuild" section below).
101+
102+
This gem also generates a `Procfile.dev` file which will run both the rails server and a live rebuild process (see "Live Rebuild" section below).
48103

49104

50105
### Building for production
@@ -57,17 +112,23 @@ The `tailwindcss:build` is automatically attached to `assets:precompile`, so bef
57112
The `tailwindcss:build` task is automatically attached to the `test:prepare` Rake task. This task runs before test commands. If you run `bin/rails test` in your CI environment, your Tailwind output will be generated before tests run.
58113

59114

60-
### Update assets automatically
115+
### Building unminified assets
116+
117+
If you want unminified assets, you can pass a `debug` argument to the rake task, i.e. `rails tailwindcss:build[debug]` or `rails tailwindcss:watch[debug]`.
118+
119+
120+
### Live rebuild
61121

62122
While you're developing your application, you want to run Tailwind in "watch" mode, so changes are automatically reflected in the generated CSS output. You can do this in a few different ways:
63123

64-
- use the [Puma](https://puma.io/) plugin to integrate "watch" with `rails server`, or
65-
- run `rails tailwindcss:watch` as a separate process, or
66-
- run `bin/dev` which uses [Foreman](https://github.com/ddollar/foreman)
124+
- use this gem's [Puma](https://puma.io/) plugin to integrate "watch" with `rails server`,
125+
- or run `rails tailwindcss:watch` as a separate process,
126+
- or run `bin/dev` which uses [Foreman](https://github.com/ddollar/foreman)
127+
67128

68129
#### Puma plugin
69130

70-
The Puma plugin requires you to add this line to your `puma.rb` configuration:
131+
This gem ships with a Puma plugin. To use it, add this line to your `puma.rb` configuration:
71132

72133
```ruby
73134
plugin :tailwindcss if ENV.fetch("RAILS_ENV", "development") == "development"
@@ -80,7 +141,13 @@ and then running `rails server` will run the Tailwind watch process in the backg
80141

81142
This is a flexible command, which can be run with a few different options.
82143

83-
If you are running `rails tailwindcss:watch` on a system that doesn't fully support file system events, pass a `poll` argument to the task to instruct tailwindcss to instead use polling: `rails tailwindcss:watch[poll]`. If you use `bin/dev` then you should modify your `Procfile.dev`.
144+
If you are running `rails tailwindcss:watch` on a system that doesn't fully support file system events, pass a `poll` argument to the task to instruct tailwindcss to instead use polling:
145+
146+
```
147+
rails tailwindcss:watch[poll]
148+
```
149+
150+
(If you use `bin/dev` then you should modify your `Procfile.dev` to use the `poll` option.)
84151

85152
If you are running `rails tailwindcss:watch` as a process in a Docker container, set `tty: true` in `docker-compose.yml` for the appropriate container to keep the watch process running.
86153

@@ -92,13 +159,6 @@ If you are running `rails tailwindcss:watch` in a docker container without a tty
92159
Running `bin/dev` invokes Foreman to start both the Tailwind watch process and the rails server in development mode based on your `Procfile.dev` file.
93160

94161

95-
### Debugging with unminified assets
96-
97-
If you want unminified assets, you can pass a `debug` argument to the rake task, i.e. `rails tailwindcss:build[debug]` or `rails tailwindcss:watch[debug]`.
98-
99-
Note that you can combine task options, e.g. `rails tailwindcss:watch[debug,poll]`.
100-
101-
102162
### Using with PostCSS
103163

104164
If you want to use PostCSS as a preprocessor, create a custom `config/postcss.config.js` and it will be loaded automatically.
@@ -126,6 +186,12 @@ If you need to use a custom input or output file, you can run `bundle exec tailw
126186

127187
Some common problems experienced by users ...
128188

189+
### Running in a docker container exits prematurely
190+
191+
If you are running `rails tailwindcss:watch` as a process in a Docker container, set `tty: true` in `docker-compose.yml` for the appropriate container to keep the watch process running.
192+
193+
If you are running `rails tailwindcss:watch` in a docker container without a tty, pass the `always` argument to the task to instruct tailwindcss to keep the watcher alive even when `stdin` is closed: `rails tailwindcss:watch[always]`. If you use `bin/dev` then you should modify your `Procfile.dev`.
194+
129195
### Conflict with sassc-rails
130196

131197
Tailwind uses modern CSS features that are not recognized by the `sassc-rails` extension that was included by default in the Gemfile for Rails 6. In order to avoid any errors like `SassC::SyntaxError`, you must remove that gem from your Gemfile.
@@ -215,6 +281,7 @@ If you get a warning `Unrecognized at-rule or error parsing at-rule ‘@tailwind
215281

216282
To fix the warning, you can either remove the `application.css`, if you don't plan to use the asset pipeline for stylesheets, and instead rely on TailwindCSS completely for styles. This is what this installer assumes. Else, if you do want to keep using the asset pipeline in parallel, make sure to remove the `require_tree .` line from the `application.css`.
217283

284+
218285
## License
219286

220287
Tailwind for Rails is released under the [MIT License](https://opensource.org/licenses/MIT).

Rakefile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,15 @@ Rake::TestTask.new(:test) do |t|
1212
end
1313

1414
task default: :test
15+
16+
namespace "format" do
17+
desc "Regenerate table of contents in README"
18+
task "toc" do
19+
require "mkmf"
20+
if find_executable0("markdown-toc")
21+
sh "markdown-toc --maxdepth=3 -i README.md"
22+
else
23+
puts "WARN: cannot find markdown-toc, skipping. install with 'npm install markdown-toc'"
24+
end
25+
end
26+
end

0 commit comments

Comments
 (0)