Tks Sir, I am newbie and your explain this with great, But please make more long video using tailwind, hotwire, devise such as make Netflix clone or Spotify clone or simple hotel booking, Keep Up Sir, I love your tutorial
As of 2024, the flags to start the project with esbuild and tailwind have changed a little. This is what I used: rails new project_name -T -j esbuild -c tailwind
I figured it out, the video is missing quite a few steps. First of all, you need a functional nodejs install (obviously). If you don't have one, check what's the latest LTS on nodejs.org, and install it using nvm (github.com/nvm-sh/nvm). Then you need to enable corepack (included with node 16.10+) with `corepack enable`. Then `yarn install` and `yarn add tailwind esbuild`. Next, `rails turbo:install` and `rails stimulus:install`. You're finally set. If not, look at the error messages when starting `./bin/dev`, I had errors from tailwind or esbuild commands missing, then errors with importing the turbolink and stimulus JS packages when building the assets... Good luck
I'm just starting with ruby and found your blog through googling questions - great content! Just wanted to let you know on dark theme some of the text (hyperlinks and bold) stays black so it's a bit hard to read! Also the hrefs for the social links on the main page aren't filled in.
keep going with Hotwire tutorials! thanks a lot
Thanks, will do!
Very good production quality. Well done.
Thank you
Really clear explanation. Thanks for this.
I'm glad you found it useful.
I can't run ./bin/dev in windows terminal, what should I do?
I don't know much about Windows. Maybe look into WSL
excellent video,, pls more videos about Rails
Thank you. Will do. Keep an eye on the channel.
Nice video! keep doing it pls waiting more content about RoR :)
Thanks. Keep an eye on the channel cause I'll be posting a lot more.
Tks Sir, I am newbie and your explain this with great,
But please make more long video using tailwind, hotwire, devise such as make Netflix clone or Spotify clone or simple hotel booking,
Keep Up Sir, I love your tutorial
love it thank you
Happy to hear it :)
Yes, please cover propshaft in a future video! Thank you for the awesome videos
For sure, stay tuned :)
As of 2024, the flags to start the project with esbuild and tailwind have changed a little. This is what I used:
rails new project_name -T -j esbuild -c tailwind
I have an asset pipeline error in application layout (cannot find application.css).. any tips?
Not from the top of my head no.
Maybe compare it with my other repos, and see what you're doing differently? github.com/mixandgo
Having the same issue :(
Have you tried running yarn?
I figured it out, the video is missing quite a few steps. First of all, you need a functional nodejs install (obviously). If you don't have one, check what's the latest LTS on nodejs.org, and install it using nvm (github.com/nvm-sh/nvm). Then you need to enable corepack (included with node 16.10+) with `corepack enable`. Then `yarn install` and `yarn add tailwind esbuild`. Next, `rails turbo:install` and `rails stimulus:install`. You're finally set. If not, look at the error messages when starting `./bin/dev`, I had errors from tailwind or esbuild commands missing, then errors with importing the turbolink and stimulus JS packages when building the assets... Good luck
I'm just starting with ruby and found your blog through googling questions - great content! Just wanted to let you know on dark theme some of the text (hyperlinks and bold) stays black so it's a bit hard to read! Also the hrefs for the social links on the main page aren't filled in.
Thank you for the heads-up.
Why esbuild?
It's very likely most people will need js transpiling, and esbuild is fast.
Not sure if that answers your question.