UA-cam viewers aren't fair with you. how are you still less than 1m subscribers with all the value you provide without up selling anything. Any thank for another wonderful project.
I am actually also shocked as he is the best with python in here. I was watching his videos back in 2019, still confirm that his projects are the most advanced on yt.
You deserve a big THANK YOU because there is hardly any content of this advanced level on UA-cam. All the channels and videos I've been watching from and learning from are mediocre, and I was unable to level up from them. They all exaggerate the same fundamentals over and over again, and the projects are the almost same. There's nothing new out there. Then I came across your video, which made me think, "yeah! I can learn from this guy even more than I expected.. A Big Thank you again!
So glad you didnt just do the whole "you do this and then that" but actually explained some of the common errors and the why things work. Super important imo to know why things work rather than just do it because it says so. Best tutorial I have come across in a long time. Keep up the good work this is super helpful
Justin was one of my first teachers when I started out. My career took me more on the front-end path, but his teaching style was/is incredible. I cannot recommend him highly enough.
I can only say THANK YOU. there are not many channels out there that think about coding as a business so well explained. for entrepreneurs it is really hard to find this kind of videos focused on creating business.
Thank you so much for this amazing tutorial! Building a SaaS app with Django, Stripe, Neon PostgreSQL, TailwindCSS, and GitHub Actions seemed daunting at first, but your clear explanations and step-by-step guidance made it all manageable. I've learned a ton and can't wait to apply these skills to my own projects. Keep up the fantastic work!
Wtf 😮, i just search for django and it showed me your free course with recent technologies. I shouted with people looking at me . Thank you so much 🙏❤, I have been following you for a long time and I am glad i did
Its sooo packed with information... I often listen to these at 1.5x and I can barely keep up at 1x... GREAT CLASS. Everything explained and lots of new stuff.
I started watching this tutorial and as a a beginner I can say this is the best video that will teach you how to create your web app. Thank you so much for creating this tutorial
I love the content and am very happy to see this new resource 👏👍 If I may, for such long courses/tutorials, showing a demo of the end product at the beginning of the video would help. I would personally be interested in giving the architecture and the process a thought before following the course to challenge my own way of going about it. Keep up the good work man
Honestly speaking, am trying to take time and set myself for this awesome content. Thanks for your time rendered always to equip us with is great content. My Love from Uganda
Thanks for sharing this course! It has been quite a long journey for me to follow this to the end. Really learned a bunch of things here and enjoyed a lot~
@@CodingEntrepreneurs Most things worked well for me, but an update of allauth-ui caught me at the early stage of the course. They now include slippers for better ui, and something seems to be working differently. I just followed an advice from the comments - copied layouts/base.html to my template path - and it worked. 🥳
FYI In Better UI for Django AllAuth section ---> please note the repo is updated as of now in templates directory instead of making account/base.html, please create the same directory path found in the django all ui repo, for example as of now i see the base.html in allauth/layouts --> base.html create the same in your repo essentially your are in a way overwriting their style.
I really don't know how to thank you brother I was a django developer until followed this tutorial🤣 then I realized what is django...Any way I wish you create another tutorial for creating full stack app in Django as backend and React as Frontend
Hi You asked what tutorial we want? If it is possible, I would like to see the applications Droplet vs EC2 docker portainer ngnix cognito AWS python django + flowbite Api python important LWA login by aws It's supposed to be a simple website, something like you built in this video SaaS it is supposed to be SP-API FOR AMAZON downloading reports .photos. and other I want to start with one API and expand over time does what I write make any sense? Do you see an easier path? Thanks
Hey, this is great stuff. Just what I needed. Just a few questions: Even if $5 isn’t much, for using Railway, but is this required for me to keep up with the tutorial? Like, are we expected to pay for “stuff” in this guide or are there alternatives while developing? I mainly asking because I’m not “there” yet with my SaaS idea. Thinking of perhaps hosting it on my RPi5 8Gb RAM for fun - in the beginning for testing.
Definitely use a Pi if you have one host it, you can learn a ton doing so. Railway is just an example of what you can do, it’s not required to learn what we do in this course. It’s definitely good to learn how to go into prod which is why I show you this.
@@CodingEntrepreneurs Thanks a bunch for the quick reply! I’m loving this tutorial but just got “stuck” at this crossroad - go with railway or not. Totally get the idea with going into production. Very nice. I’ve hosted my React website using the RPi earlier and that was really great learning as you imply. Now want to take it further with dev/prod etc. and full stack using Python/Django so your stuff is amazing.
thank you for your good tutorial . but i have an questions . my question is , is it possible to explain a multi tenant system in your lecture ? . or if possible then please can you publish an video for multi tenant app video ? . thank you again
Really really nice tutorial. You have a nice way of explaining. Easy to follow. What stops me from launching anything is that I'm worried about commitments or responsibilities. After all, I store customer data. To what extent am I liable if this data is deleted? Is it because the database provider has made a mistake or I have installed a bug? After all, someone has paid money for this service. Are there any tips or things to bear in mind in this regard so that I don't score an own goal? I don't want to be legally prosecuted.
Great Course!! I would really love to learn how to take the HTMX route in order to make the app more user friendly without adding the complexity that NEXT / React brings. I think we could achive a lot in a more enjoyable way coding wise with HTMX and it would also suggest an alternative route to the current status quo in full stack dev wich is becoming more and more crazy in terms of complexity...
I tried several times but still had an error about OperationalError from Django, which indicates that my application is unable to establish a connection to the PostgreSQL database. Do I need to upgrade my plan so that I can connect to Neon?
Great Course thank you! I'm now at half time and I'm a bit confused over the subscriptions - groups - permissions. Can you wrap this up with use cases and best practices such as: What do you do if a new user comes in? Do you give them a subscription manually or do you add groups manually and what if you remove all groups manually and the subscription is still existing etc...Thanks!
I'd say grant permissions as needed and what makes sense for your app. New users might go into a "new users" group that, over time, moves over into a "active non-subscriber" group then, if the user is not very active on your site, "inactive non-subscriber" group.
I had some issuess with setitng up the django allauth-ui templates as they have been updated since the recording of the video, overall very similar to how he does it in the video just different file paths copied from their main repository but what you need to do is add allauth/layouts/base.html to templates then copy and past the file from the main branch from django-allauth-ui github. I also added a folder to templates called account and in this folder i added login.html and signup.HTML in both of these i use {% extends allauth/layout/base.html%} from here you just need to add the lines from the original base.html as he does in the video the only other issue i found was the button color being removed due to flowbite so if this happens you will need to make a custom.css class in the staticfile directory that's already set up and add that link under the header in allaut/layout/base.html like this
We didn't create .dockerignore file, so wouldn't staticfiles/vendor/flowbite.min.css and js end up as part of image? Do we still need vendor_pull command? Or does Railway work differently?
I like this SW stack. I don't have any experience with Neon though. I have to use some PostGRES db on AWS. can Neon be hosted on AWS if that makes sense? PS: Thanks a million for the video
Thanks for the content. Would this subscription model make sense for like a bookmark app ie. let users categorize useful URL links they find, decide if they want to make them public, share them with other users, maybe use generative AI to recommend links and collections of links of other users that are public?
Hello, seems like the django-allauth-ui had updated the their package and source code to another version, which I can't apply the account/base.html to our templates as in videos. May I know is there a fix? I am stuck at here and couldn't continue
@@CodingEntrepreneurs I have copied from ur sourcecode from ‘src/templates/accounts/base.html’ but it doesn’t render the webpage for the login just like in your video. But overall from the beginning until now, it was a great tutorial. Thx for your hard work.
awesome video, lot's to learn especially for a beginner like me, although I see a lot of people are only using stripe, is there a wat to use another platform like PayPal or something since stripe is not available everywhere especially in the African market
Thank you. Other payment methods are possible but requires knowing their api and service. A lot of what’s done here can be adapted but, especially for beginners, that might be a bit tricky. I suggest using Stripe to learn how it’s possible. Once you do that, then use an API that works in the region you want.
How much Python do you know? If you feel good about writing classes functions lists variables, you should give this a try. I give some other resources to learn more in the video
@CodingEnterpreneues I know the basics as i have done it for (c, c++,c#,js) so i can complete that in a day. Just revision required. So after that what should i Start with.
1) Django for ecosystem --> has admin panel + application structure 2) FastAPI --> you need to build the app structure BUT its best for asychronous programming.
you have run DEBUG = True from command prompt, but when i try the same in windows command promt it is throwing error.. so there must be another way, do you know anything about it? if so please let me know
thanks alot for this but can i ask why you not use class based view instead of function based view i just wonder spcially that the class based view have alot of good shortcuts that gonna make it esier i just asking and wonder you are the master and i want to learn
Hi cfe, Great tutorial so far. Can you please help with the Docker/railway error I'm getting below? -- 9.339 Failed to build django-allauth-ui 9.339 ERROR: ERROR: Failed to build installable wheels for some pyproject.toml based projects (django-allauth-ui) -- Thanks, Br
really thank you so much for this tutorial - great job. But the first time when i am trying to deploy to railway the deployment is failing when started the gunicorn it is giving some errors, not able to understand at all, any idea why this is happening.. these errors are really scary to see :) it will be great if you can guide.. thank you in advance
I'm not able to run `python manage.py collectstatic` because the flowbite.min.js file has `//# sourceMappingURL=flowbite.min.js.map` at the very end and Django is attempting to find it. I could remove that portion of the .js file but it would involve making a script to strip that through regex. Did I miss something along the way?
I just added the .map to my list of staticfiles, turns out it exists if you just add .map to the end of the .js url Edit: Had I just watched a couple more minutes I would have seen you address this... Glad I figured it out on my own at least lol
A BIG THANK U MAN FOR THIS I WNNA RQUEST U COULD U PLZ DO A SAME PROJECT ON MIROSERVICES AND DEPLOY THAT INTO A KUBERNETES CLUSTER WITH COMPLETE FRONTEND BACKEND AND DB WITH PROPER ARCHITECTURE LIKE MESSAGE QUEUES AND ALL
hi thanks am learning alot, 1: please help 4:35:31, Third-Party Login Failure An error occurred while attempting to login via your third-party account. 2: 'allauth_ui', and 'widget_tweaks' integration giving me TemplateSyntaxError at /accounts/login/ 'slippers' is not a registered tag library. Must be one of... I research the issues yet still no progress.
This guy low-key is the reason I still have a job. God bless you my friend!
this guy is the not-so-low-key reason I smiled extra wide today. thank you for making my day
@@CodingEntrepreneurs anytime
UA-cam viewers aren't fair with you. how are you still less than 1m subscribers with all the value you provide without up selling anything. Any thank for another wonderful project.
What do I need million subs for when I have you?
Thanks for the support!
@@CodingEntrepreneurs Wow, well said, s/he deserves that compliment 😂Actually you also deserve praise for your hard and detected work.
@@CodingEntrepreneurs respect!
I am actually also shocked as he is the best with python in here. I was watching his videos back in 2019, still confirm that his projects are the most advanced on yt.
@@CodingEntrepreneursman you are love just need to work on seo
You deserve a big THANK YOU because there is hardly any content of this advanced level on UA-cam. All the channels and videos I've been watching from and learning from are mediocre, and I was unable to level up from them. They all exaggerate the same fundamentals over and over again, and the projects are the almost same. There's nothing new out there. Then I came across your video, which made me think, "yeah! I can learn from this guy even more than I expected..
A Big Thank you again!
Yes, this comment is exactly what I want to say too.
May God bless you for putting so much content for free
Be sure to sign up on neon, they helped us bring it to life
So glad you didnt just do the whole "you do this and then that" but actually explained some of the common errors and the why things work. Super important imo to know why things work rather than just do it because it says so. Best tutorial I have come across in a long time. Keep up the good work this is super helpful
Justin was one of my first teachers when I started out. My career took me more on the front-end path, but his teaching style was/is incredible. I cannot recommend him highly enough.
It's like watching Sean Strickland teaching you about how to build a SaaS, the way he talks, but it's great content love it
I was about to say it 😂😂
@@nitensapkota8606 🤣
This is GOLD. I can't thank you enough. As a junior Django developer myself, your courses are so valuable to me. ❤
Wow, thank you!
I can only say THANK YOU. there are not many channels out there that think about coding as a business so well explained. for entrepreneurs it is really hard to find this kind of videos focused on creating business.
Thank you so much for this amazing tutorial! Building a SaaS app with Django, Stripe, Neon PostgreSQL, TailwindCSS, and GitHub Actions seemed daunting at first, but your clear explanations and step-by-step guidance made it all manageable. I've learned a ton and can't wait to apply these skills to my own projects. Keep up the fantastic work!
GPT detected 😂😂
Good that there wasn't word "elevate" in your comment.
You are such a great tutor
Just one hour into the course I feel like a pro
Explanation is very detailed you know your stuff
Thank you!
This is by far the most comprehensive Django tutorial I’ve ever seen
Wtf 😮, i just search for django and it showed me your free course with recent technologies. I shouted with people looking at me .
Thank you so much 🙏❤, I have been following you for a long time and I am glad i did
Its sooo packed with information... I often listen to these at 1.5x and I can barely keep up at 1x... GREAT CLASS. Everything explained and lots of new stuff.
I started watching this tutorial and as a a beginner I can say this is the best video that will teach you how to create your web app. Thank you so much for creating this tutorial
I'm not a web dev but I watch your videos because your method of teaching is so understandable and satisfying ❤
God bless you amigo! This course - PHENOMENAL!
Keep it up, super beginner friendly, super detailed and great quality!
The best tutorial about Django, thank you!
I love the content and am very happy to see this new resource 👏👍
If I may, for such long courses/tutorials, showing a demo of the end product at the beginning of the video would help. I would personally be interested in giving the architecture and the process a thought before following the course to challenge my own way of going about it.
Keep up the good work man
Thank you
Full of thanks!! Justin even in the age of AI you are incredible as always.
Wooow 12 hours and for FREE?
MashAllah. May Allah bless you.
Thank you
Honestly speaking, am trying to take time and set myself for this awesome content. Thanks for your time rendered always to equip us with is great content.
My Love from Uganda
Thank you
This is probably the best technical instruction video I've ever watched. Thank you so much!
Thank you for making my day!
Thanks for sharing this course! It has been quite a long journey for me to follow this to the end. Really learned a bunch of things here and enjoyed a lot~
Thank you! Did anything not work? What could be improved?
@@CodingEntrepreneurs Most things worked well for me, but an update of allauth-ui caught me at the early stage of the course. They now include slippers for better ui, and something seems to be working differently. I just followed an advice from the comments - copied layouts/base.html to my template path - and it worked. 🥳
You are an absolute genius when it comes to Django.
Man how its possible that you have only 300k subs man. you have my dream skills Man.
🤷🏻♂️ who knows. Tell your friends to sub lol
Love it, thank you for teaching me how to fish. Mad respect!! 💯
As long as you go fishing, I did my job 😂
one of the best django tutorial
12 hours of quality content. You're our hero!
I subscribed this channel 2 days ago, best decision I took❤❤
Welcome and thank you!
OMG--- i have no words--- What should i write to express my excitement situation on this Great Video--- Can anyone lend me some words----?
I think you nailed it
FYI In Better UI for Django AllAuth section ---> please note the repo is updated as of now in templates directory instead of making account/base.html, please create the same directory path found in the django all ui repo, for example as of now i see the base.html in allauth/layouts --> base.html create the same in your repo essentially your are in a way overwriting their style.
Thank you very much, I was trying to solve this since yesterday, now that I see your comment it seems very obvious but I had not realized it.
Thank you.
I really don't know how to thank you brother I was a django developer until followed this tutorial🤣 then I realized what is django...Any way I wish you create another tutorial for creating full stack app in Django as backend and React as Frontend
A computerized maintenance management system would be a great next project/tutorials @codingEntrepreneurs. You are going a great work
This course is fantastic. Thank you for the quality content!
Thank you!
Just a scan through and I am giving a like
Was desperately waiting for this tutorial. 🙏🙏🙏
It's been 2 yrs in webdev and I still feel its way too difficult to understand the logics. Oh God Give Me Brain For Coding )))
Bcz you try to understand the frame works/library before understanding the programming language
How
Take more effort on reading books before video tutorials
You don't need a brain, just 100% practice and comitment
@@Maisonier I liked this comment. Thanks
Hi You asked what tutorial we want?
If it is possible, I would like to see the applications
Droplet vs EC2
docker portainer ngnix
cognito AWS
python django + flowbite
Api python
important
LWA login by aws
It's supposed to be a simple website, something like you built in this video SaaS
it is supposed to be SP-API FOR AMAZON downloading reports .photos. and other I want to start with one API and expand over time does what I write make any sense?
Do you see an easier path?
Thanks
Hey, this is great stuff. Just what I needed. Just a few questions:
Even if $5 isn’t much, for using Railway, but is this required for me to keep up with the tutorial? Like, are we expected to pay for “stuff” in this guide or are there alternatives while developing?
I mainly asking because I’m not “there” yet with my SaaS idea. Thinking of perhaps hosting it on my RPi5 8Gb RAM for fun - in the beginning for testing.
Definitely use a Pi if you have one host it, you can learn a ton doing so.
Railway is just an example of what you can do, it’s not required to learn what we do in this course. It’s definitely good to learn how to go into prod which is why I show you this.
@@CodingEntrepreneurs Thanks a bunch for the quick reply! I’m loving this tutorial but just got “stuck” at this crossroad - go with railway or not. Totally get the idea with going into production. Very nice.
I’ve hosted my React website using the RPi earlier and that was really great learning as you imply. Now want to take it further with dev/prod etc. and full stack using Python/Django so your stuff is amazing.
till now the best content of django
Waiting for part 2 for this app to upgrade to next level 😊
Sir u r amazing. Hat's off to you.
Hi Men your Genius i really appreciate your effort and dedication hats off
I will donate my first salary to your channel for sure.... Thanks a lot sir 🙏🏻
thank you for your good tutorial . but i have an questions . my question is , is it possible to explain a multi tenant system in your lecture ? . or if possible then please can you publish an video for multi tenant app video ? . thank you again
Amazing, more videos like this and for Django
I was waiting for this thank you very much from the bottom of my heart
Wow. I've been trying to build a saas app with django. This course arrived just in time. Could you build multi-tenant apps in the future?
Multi-tenant in Django would be great. Who else wants this?
@@CodingEntrepreneursme
@@CodingEntrepreneurs add me as well
Count me in!
You mention in the course you aren't doing multi-tenant saas "yet". It would be great if you did. Multi-tenancy is pretty import for saas afterall.
More Django is good , good Django is great! ❤
This ladies & gentlemen is my guy!
People who use tailwind are gold, currently watching REST video, so will watch this one later.
Spotless super video. Thank you !!
Really really nice tutorial. You have a nice way of explaining. Easy to follow.
What stops me from launching anything is that I'm worried about commitments or responsibilities. After all, I store customer data. To what extent am I liable if this data is deleted? Is it because the database provider has made a mistake or I have installed a bug? After all, someone has paid money for this service. Are there any tips or things to bear in mind in this regard so that I don't score an own goal? I don't want to be legally prosecuted.
Great Course!!
I would really love to learn how to take the HTMX route in order to make the app more user friendly without adding the complexity that NEXT / React brings. I think we could achive a lot in a more enjoyable way coding wise with HTMX and it would also suggest an alternative route to the current status quo in full stack dev wich is becoming more and more crazy in terms of complexity...
Thank you! Who else wants HTMX?
@@CodingEntrepreneurs just right here
I tried several times but still had an error about OperationalError from Django, which indicates that my application is unable to establish a connection to the PostgreSQL database. Do I need to upgrade my plan so that I can connect to Neon?
excited to complete this thank u😇
Neon is probably the best way to host your psql db.
You are my savior right now!
oh my god, this video is really crazy
Great Course thank you! I'm now at half time and I'm a bit confused over the subscriptions - groups - permissions. Can you wrap this up with use cases and best practices such as: What do you do if a new user comes in? Do you give them a subscription manually or do you add groups manually and what if you remove all groups manually and the subscription is still existing etc...Thanks!
I'd say grant permissions as needed and what makes sense for your app. New users might go into a "new users" group that, over time, moves over into a "active non-subscriber" group then, if the user is not very active on your site, "inactive non-subscriber" group.
@@CodingEntrepreneurs Alright thanks!
I had some issuess with setitng up the django allauth-ui templates as they have been updated since the recording of the video, overall very similar to how he does it in the video just different file paths copied from their main repository but what you need to do is add allauth/layouts/base.html to templates then copy and past the file from the main branch from django-allauth-ui github. I also added a folder to templates called account and in this folder i added login.html and signup.HTML in both of these i use {% extends allauth/layout/base.html%} from here you just need to add the lines from the original base.html as he does in the video the only other issue i found was the button color being removed due to flowbite so if this happens you will need to make a custom.css class in the staticfile directory that's already set up and add that link under the header in allaut/layout/base.html like this
can you elaborate more this custom.css i having the problem with the button.
what a content! so good to found you!
This guy is a Saint!
We didn't create .dockerignore file, so wouldn't staticfiles/vendor/flowbite.min.css and js end up as part of image? Do we still need vendor_pull command? Or does Railway work differently?
I like this SW stack. I don't have any experience with Neon though. I have to use some PostGRES db on AWS. can Neon be hosted on AWS if that makes sense? PS: Thanks a million for the video
Thanks!
Neon is its own service but you can connect to it on any cloud platform just as we do in this course.
Thank you very much, I learn a lot from your content!
Thanks bro, this is great 👌🔥
Good project sir . Awesome work.
This is amazing
Do you have sample live application to test that? I would like to test that SaSS before I jump to GitHub, cause I'm not a proficient programmer.
I would have put everything aside and start doing this project rightaway if it was done with DRF but lets see if I want to this in future
Perhaps…. DRF comes later
Thanks for the content. Would this subscription model make sense for like a bookmark app ie. let users categorize useful URL links they find, decide if they want to make them public, share them with other users, maybe use generative AI to recommend links and collections of links of other users that are public?
Great content
Thanks
Glad you liked it!
Hello, seems like the django-allauth-ui had updated the their package and source code to another version, which I can't apply the account/base.html to our templates as in videos. May I know is there a fix? I am stuck at here and couldn't continue
Does it work from my code? Copy what I have
@@CodingEntrepreneurs I have copied from ur sourcecode from ‘src/templates/accounts/base.html’ but it doesn’t render the webpage for the login just like in your video. But overall from the beginning until now, it was a great tutorial. Thx for your hard work.
@@yixian0716 Facing the same issue here
awesome video, lot's to learn especially for a beginner like me, although I see a lot of people are only using stripe, is there a wat to use another platform like PayPal or something since stripe is not available everywhere especially in the African market
Thank you.
Other payment methods are possible but requires knowing their api and service. A lot of what’s done here can be adapted but, especially for beginners, that might be a bit tricky.
I suggest using Stripe to learn how it’s possible. Once you do that, then use an API that works in the region you want.
Thanks!
Thank you!
I want to do my first python project should i start with this . I have done mern though.
How much Python do you know? If you feel good about writing classes functions lists variables, you should give this a try. I give some other resources to learn more in the video
@CodingEnterpreneues I know the basics as i have done it for (c, c++,c#,js) so i can complete that in a day. Just revision required. So after that what should i Start with.
Dear Brother I need a suggestion which is better for SaaS , FastApi or Django.Please give me suggestion
1) Django for ecosystem --> has admin panel + application structure
2) FastAPI --> you need to build the app structure BUT its best for asychronous programming.
Hey Justin!, can you make django tutorial on multi-tenancy please!
you have run DEBUG = True from command prompt, but when i try the same in windows command promt it is throwing error.. so there must be another way, do you know anything about it? if so please let me know
If I understand almost all of these concepts in video then am I ready to apply for Django dev jobs??😬Please answer..😔😔
Could be. Why not do the course, apply, get feedback, and go from there?
@@CodingEntrepreneurs Thanks for the advice and a big big Thanks for this course ❣️❣️. This is absolute gold and it means a lot.
11 hours, wow 😲
Can you release tuts on django-inlinecss for email template which involves bootstrap 5 and semantic ui and loops in template?
thanks alot for this
but can i ask why you not use class based view instead of function based view i just wonder spcially that the class based view have alot of good shortcuts that gonna make it esier i just asking and wonder you are the master and i want to learn
Function based views are easier to manage for most. Both can be great
i cant logout and i didnt understand why
{% include "account/_button.html" with text=signout_message %}
Error during template rendering
🔥
Thanks :)
Nice one
Tenku 🎉🎉🎉
Hi cfe,
Great tutorial so far. Can you please help with the Docker/railway error I'm getting below?
--
9.339 Failed to build django-allauth-ui
9.339 ERROR: ERROR: Failed to build installable wheels for some pyproject.toml based projects (django-allauth-ui)
--
Thanks,
Br
really thank you so much for this tutorial - great job. But the first time when i am trying to deploy to railway the deployment is failing when started the gunicorn it is giving some errors, not able to understand at all, any idea why this is happening.. these errors are really scary to see :) it will be great if you can guide.. thank you in advance
Awesome thanks. requirements.txt didn't want to install first, needed to save the file first 😅
this is amazing!
I'm not able to run `python manage.py collectstatic` because the flowbite.min.js file has `//# sourceMappingURL=flowbite.min.js.map` at the very end and Django is attempting to find it. I could remove that portion of the .js file but it would involve making a script to strip that through regex. Did I miss something along the way?
I just added the .map to my list of staticfiles, turns out it exists if you just add .map to the end of the .js url
Edit: Had I just watched a couple more minutes I would have seen you address this... Glad I figured it out on my own at least lol
Dear sir
I can't find any job as a fresher Django Developer all openings are demanding years of work experience. What should I do ?. I am an Indian
A BIG THANK U MAN FOR THIS I WNNA RQUEST U COULD U PLZ DO A SAME PROJECT ON MIROSERVICES AND DEPLOY THAT INTO A KUBERNETES CLUSTER WITH COMPLETE FRONTEND BACKEND AND DB WITH PROPER ARCHITECTURE LIKE MESSAGE QUEUES AND ALL
thank u so much
youre welcome
Please make separate tutorial on Django allauth+React with authentication
hi thanks am learning alot, 1: please help 4:35:31, Third-Party Login Failure An error occurred while attempting to login via your third-party account. 2: 'allauth_ui', and 'widget_tweaks' integration giving me TemplateSyntaxError at /accounts/login/
'slippers' is not a registered tag library. Must be one of... I research the issues yet still no progress.
hi, did you fixed the github problem?
@@kevinbort4249 no not yet
pip install django-allauth-ui==0.3.6 will solve the issues. Latest version of django-allauth-ui works differently
@@msvajgl thanks