django-tailwind - Easy TailwindCSS setup in Django projects!

Поділитися
Вставка
  • Опубліковано 3 гру 2024

КОМЕНТАРІ • 51

  • @bugbytes3923
    @bugbytes3923  16 днів тому +1

    ☕ Buy a coffee: ko-fi.com/bugbytes
    ⭐Top resource to learn Python - datacamp.pxf.io/kOjKkV ⭐

  • @lanasillomaster7034
    @lanasillomaster7034 13 днів тому +1

    Excellent tutorial, very clear and explaining a lot of useful details. I came to just install Tailwind but ended up using DasiyUI too now! Thank you!

  • @BuzzNoodle33
    @BuzzNoodle33 3 місяці тому +1

    This package may save approximately 20-40 minutes of setup time compared to the original tutorial, but it introduces unnecessary abstractions that can reduce flexibility. At some point of time, a team will have to learn its magic and how to deal with it in complex setups.
    The video itself is excellent. Thank you!

    • @bugbytes3923
      @bugbytes3923  3 місяці тому

      Thank you! Yeah, I totally agree, I think the package is a good primer into the setup of Tailwind but at some point, you'd want someone in your team to understand the concepts behind it all.

  • @queendarlinnnamani4779
    @queendarlinnnamani4779 22 дні тому +1

    Awesome video and well-detailed. Thank you

  • @Odinson-d6d
    @Odinson-d6d 5 днів тому +1

    Thanks man ❤

  • @Sirot1d
    @Sirot1d 2 місяці тому +1

    Good work bro. Definitely best instructor related django on youtube.

    • @bugbytes3923
      @bugbytes3923  2 місяці тому

      Thanks a lot bro, appreciate that!

  • @raulolmos345
    @raulolmos345 4 місяці тому +3

    Very good video, completing all the tools for Django. We could now put our Django + Tailwind + Htmx applications into production.

  • @developershub2024
    @developershub2024 4 місяці тому

    These are my tools, have been using them for a while now, thank you for refreshing on that topic, great video bro!!

  • @imramugh
    @imramugh Місяць тому +1

    Great tutorial... thank you!!

  • @arnostrauss8236
    @arnostrauss8236 4 місяці тому

    Thanks

    • @bugbytes3923
      @bugbytes3923  4 місяці тому

      Thanks so much for the super thanks, much appreciated!

  • @dodokwak
    @dodokwak 4 місяці тому

    Thanks a lot. It was the reason why I didn't use tailwind in my django project. Even with webpack I couldn't manage to create a light weighted bundle for production. (bootstrap 5 is at least somewhat lighter)

    • @ItsEverythingElse
      @ItsEverythingElse 4 місяці тому

      That makes no sense. Bootstrap5 will never be lighter than Tailwind (assuming you are doing things correctly).

    • @dodokwak
      @dodokwak 4 місяці тому

      @@ItsEverythingElse The default Tailwind configuration comes with 36.4KB minified and g-zipped. Compared to Bootstrap at 22.1KB , Tailwind is 14.3KB heavier.

  • @FGvelo
    @FGvelo 4 місяці тому

    My man
    Always turn up
    nice man

  • @notthemlgtom494
    @notthemlgtom494 3 місяці тому +1

    I have been watching alot of your django + other tech videos and I gotta say you are one of the best web people out there. I was also wondering if you prefer any other back-end technology other than django. Also, do you think the django templating system can function seamlessly similar to an SPA? Thanks!

    • @bugbytes3923
      @bugbytes3923  3 місяці тому +1

      Thanks a lot! I also like Go, FastAPI, and have been working with Next.js recently on the server. As for templating, I think you can get a lot of good interactivity now with modern JavaScript and tools like HTMX/Alpine alongside Django templates, but for complex scenarios a SPA is probably going to be better.

  • @trosgate
    @trosgate 4 місяці тому +2

    Great Job

  • @venkateshchary3420
    @venkateshchary3420 4 місяці тому

    Great content , Could you please make a video on multiple inheritanced serializers in Django

  • @seven1_studio
    @seven1_studio 4 місяці тому

    Use *concurrently* npm package for run commands concurrently. By using we can run any number of commands at one time.

  • @frameff9073
    @frameff9073 4 місяці тому +1

    🎉 Thank

  • @RubelMollah-w7b
    @RubelMollah-w7b 5 днів тому

    Thanks....

  • @amineboutaghou4714
    @amineboutaghou4714 Місяць тому

    Hi, many thanks for your content.
    Which vscode extensions are you using for having both django and tailwind syntax highlighting in the html templates file ?
    Thank you !

  • @Yarkanlaki
    @Yarkanlaki 4 місяці тому

    Which way is faster django-tailwind package or flowbite tutorial

  • @jimvvv
    @jimvvv 4 місяці тому +1

    Is there a good tool to prettify tailwindcss in django template but not making built-in tag messed?

  • @abdulbosit
    @abdulbosit 4 місяці тому

    Thank you. Can you show your extensions

  • @zakchips
    @zakchips 4 місяці тому

    Can I deploy django project using Tailwind without docker container? As I understood I need to install node.js on the remote server but would it be enough? Thank you.

    • @bugbytes3923
      @bugbytes3923  3 місяці тому +1

      You can definitely deploy Django with Tailwind, without using Docker.
      Using django-tailwind as an example - a bundle is generated automatically, and you can ship this to your server. The remote server would not require Node.js to be installed.

  • @freshnews7198
    @freshnews7198 4 місяці тому

    Sir i am becoming fan you. Sir I want to be your pupil ❤

    • @bugbytes3923
      @bugbytes3923  4 місяці тому

      Thanks for your comment, glad to hear that!

  • @levimoore800
    @levimoore800 3 місяці тому

    I dont think this is working. i did yourr steps but I dont get a success button as green. Did you do something off screen. can you share this code

  • @ahmedaz6917
    @ahmedaz6917 4 місяці тому

    why django-tailwind when we can use cdn tailwind

    • @bugbytes3923
      @bugbytes3923  4 місяці тому +3

      "The CDN loads the entire CSS of Tailwind, which is thousands of classes, causing the browser to load a lot of unnecessary information."
      Basically, using a more optimized workflow such as django-tailwind allows you to only bundle the Tailwind classes that you actually use in your application, which can be much better for performance.

    • @David-eb8lh
      @David-eb8lh 3 місяці тому

      If you look at your developer console, tailwind css itself warns you to avoid using cdn in production apps.

  • @serychristianrenaud
    @serychristianrenaud 4 місяці тому +1

    Thanks