Agile Web Development with Rails 7:[Page 68][solved]

When you generate the application, because you have added TailwindCSS you’ll get problems since this isn’t installed locally.

You apparently need to run “bundle install” to pull the gem for this.

That’s not how it is supposed to work, or what I am seeing.

If you run rails new depot --css tailwind, tailswindcss will be added to the Gemfile, and bundle install will be run for you.

Can you provide more information on what you are seeing?

It looks like the original problem was because I didn’t have an active Internet connection and so bundle install didn’t get run.

However having retried this I still had a problem, since there was a missing redis gem. One I got this gem added, and recreated the application everything now appears successfully.