How to Start a Ruby on Rails 7 App With Hotwire and Tailwind CSS

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ม.ค. 2025

ความคิดเห็น • 29

  • @rdepaulabarbosa
    @rdepaulabarbosa 2 ปีที่แล้ว +5

    keep going with Hotwire tutorials! thanks a lot

    • @mixandgo
      @mixandgo  2 ปีที่แล้ว

      Thanks, will do!

  • @buenosaires7347
    @buenosaires7347 3 ปีที่แล้ว +1

    Very good production quality. Well done.

    • @mixandgo
      @mixandgo  3 ปีที่แล้ว

      Thank you

  • @shittuadedamola3297
    @shittuadedamola3297 2 ปีที่แล้ว

    Really clear explanation. Thanks for this.

    • @mixandgo
      @mixandgo  2 ปีที่แล้ว

      I'm glad you found it useful.

  • @ferylj3694
    @ferylj3694 2 ปีที่แล้ว +1

    I can't run ./bin/dev in windows terminal, what should I do?

    • @mixandgo
      @mixandgo  2 ปีที่แล้ว

      I don't know much about Windows. Maybe look into WSL

  • @CHACHANUS
    @CHACHANUS 3 ปีที่แล้ว +1

    excellent video,, pls more videos about Rails

    • @mixandgo
      @mixandgo  3 ปีที่แล้ว

      Thank you. Will do. Keep an eye on the channel.

  • @AndyDev404
    @AndyDev404 3 ปีที่แล้ว +2

    Nice video! keep doing it pls waiting more content about RoR :)

    • @mixandgo
      @mixandgo  3 ปีที่แล้ว

      Thanks. Keep an eye on the channel cause I'll be posting a lot more.

  • @danimusbar
    @danimusbar 2 ปีที่แล้ว +1

    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

  • @al-mokhtar_
    @al-mokhtar_ 3 ปีที่แล้ว +1

    love it thank you

    • @mixandgo
      @mixandgo  3 ปีที่แล้ว

      Happy to hear it :)

  • @SeanMitchellNZ
    @SeanMitchellNZ 2 ปีที่แล้ว

    Yes, please cover propshaft in a future video! Thank you for the awesome videos

    • @mixandgo
      @mixandgo  2 ปีที่แล้ว

      For sure, stay tuned :)

  • @adrianguzman9371
    @adrianguzman9371 10 หลายเดือนก่อน

    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

  • @mrmanyouare
    @mrmanyouare 2 ปีที่แล้ว

    I have an asset pipeline error in application layout (cannot find application.css).. any tips?

    • @mixandgo
      @mixandgo  2 ปีที่แล้ว

      Not from the top of my head no.

    • @mixandgo
      @mixandgo  2 ปีที่แล้ว +1

      Maybe compare it with my other repos, and see what you're doing differently? github.com/mixandgo

    • @chuckray8675
      @chuckray8675 2 ปีที่แล้ว

      Having the same issue :(

    • @mixandgo
      @mixandgo  2 ปีที่แล้ว

      Have you tried running yarn?

    • @chuckray8675
      @chuckray8675 2 ปีที่แล้ว

      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

  • @jollyjjo
    @jollyjjo 3 ปีที่แล้ว

    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.

    • @mixandgo
      @mixandgo  3 ปีที่แล้ว

      Thank you for the heads-up.

  • @mattfieldhouse111
    @mattfieldhouse111 2 ปีที่แล้ว +1

    Why esbuild?

    • @mixandgo
      @mixandgo  2 ปีที่แล้ว

      It's very likely most people will need js transpiling, and esbuild is fast.
      Not sure if that answers your question.