Thank you soo much, the line at 1:50 is the main reason I watched your whole 2 hours long video and I really really appreciate your video and that line.
Спасибо большое вам за такой подробный урок. В интернете очень мало подобной информации. Я наконец то разобрался как развернуть вебсокеты! Всего вам хорошего, продолжайте делать такие полезные видео.
hey dude, this amazing video is not appearing on the search result that's why it has very few views...it takes hours to find this video. Appreciate your work thankyou
Hey Mitch, Thanks for the much detailed tutorial. I was having issue with daphne, I could correct and now able to run the chat app in production server.
Thanks for the tutorial! Was sooooo useful! I just was looking for the part how to use daphne in production, but all the tutorial was very useful. Thanks again.
you all probably dont give a shit but does any of you know of a way to get back into an instagram account? I was stupid lost the account password. I would appreciate any assistance you can give me
@Ace Royal I really appreciate your reply. I found the site thru google and im waiting for the hacking stuff atm. Seems to take quite some time so I will get back to you later when my account password hopefully is recovered.
Best tutorial ever. PERIOD. This video is hands down, one of a kind in the whole of the internet. Such details and explanation, much wow👌👌👌. Can't thank you enough 🙏🙏🙏🙏🙏
This video was very helpful, they are very few articles that talk about deploying a daphne server and u just did a very comprehensive guide about it ... mazel tov👍
Thank you so much. I accomplish deploying my web application owing to you!!☺ I am Japanese and not so good at English, but I managed to do. I couldn't find any good information about Django deploy with channels and Daphne, except for this video. I will continue to study Django.
Hi Adrian, You got it running? I am facing some problem. Although, Mitch has done tremendous job to help us, my daphne service is getting failed every time after one successful running.
I'm facing an issue while creating daphne.service daphne.service: Failed at step CHDIR spawning /home/django/Gymme/venv/bin/python: No such file or directory This is the error I'm getting. Can you help me ?
Hi Mitch, thank you so much for the detailed documentation on this topic! I have a weird environment problem though which I can't seem to get through.. I got the error message "django.core.exceptions.ImproperlyConfigured: The SECRET_KEY setting must not be empty." However, the secrete_key has its key being permanently stored as the environment variable.. Echoing it would return the correct value.. but Daphne service can't be started because of this issue.. I also tried to write the environment variable to the daphne.service file...Is there anything else that I can look into? Thank you very much in advance!
I had the same problem but was luckily able to fix it quickly. in your asgi.py file: before you import modules from apps that you have created you gotta set the the os.environ.setdefault('DJANGO_SETTINGS_MODULE', f'{config("PROJECT_NAME")}.settings') first. So first the settings then the modules. something like this: import os import django from decouple import config from channels.routing import get_default_application os.environ.setdefault('DJANGO_SETTINGS_MODULE', f'{config("PROJECT_NAME")}.settings') django.setup() import myapp.routing #this after os.environ.setdef....
Hello, websocket is not working even though I have made all the settings. Do I need to manage rules on the server side? I'm using aws ec2, do I need to install a load balancer? because I have done all the installations in your example and everything works fine but there is no wss connection, I would appreciate if you could give an idea about it.
Amazing tutorial Mitch. I was wondering: I am creating a web app to host and it's an app with 20 fixed chat rooms, each room constantly having 5 students (so 100 users total) where members of the group can discuss the group project through chat in their respective room. What do you think the pricing for something like this be? I know it's hard to gauge with so little description, but anything will do. I want to know what I'm getting myself into, as a student a 200$ bill for example is a no-go.
Your real time chat application development i really except but it was many based course project i am studying college so i haven't no money so I real disappointed i followed the all videos
Thank you soo much, the line at 1:50 is the main reason I watched your whole 2 hours long video and I really really appreciate your video and that line.
It is so unreal how much i've learned in the course of just 3-4 hours watching this video, your channel is a blessing, thank you so much
Спасибо большое вам за такой подробный урок. В интернете очень мало подобной информации. Я наконец то разобрался как развернуть вебсокеты! Всего вам хорошего, продолжайте делать такие полезные видео.
+
hey dude, this amazing video is not appearing on the search result that's why it has very few views...it takes hours to find this video. Appreciate your work thankyou
Thank you so much for your course. I had so much trouble with my websocket in production, this was a life saver.
Hey Mitch, Thanks for the much detailed tutorial. I was having issue with daphne, I could correct and now able to run the chat app in production server.
7:56 "dupididupididah", best expression ever
Thanks for the tutorial! Was sooooo useful! I just was looking for the part how to use daphne in production, but all the tutorial was very useful. Thanks again.
you all probably dont give a shit but does any of you know of a way to get back into an instagram account?
I was stupid lost the account password. I would appreciate any assistance you can give me
@Eddie Talon instablaster =)
@Ace Royal I really appreciate your reply. I found the site thru google and im waiting for the hacking stuff atm.
Seems to take quite some time so I will get back to you later when my account password hopefully is recovered.
@Ace Royal It did the trick and I now got access to my account again. I'm so happy:D
Thanks so much you saved my ass :D
@Eddie Talon Happy to help :D
amazing tutorial. hands down one of the tougher projects i have worked on but I am learning so much. THANK YOU. i found tons of value in this tutorial
man, your video is so high class, I'm shocked i get tons of knowledge for free in this content
Best tutorial ever. PERIOD. This video is hands down, one of a kind in the whole of the internet. Such details and explanation, much wow👌👌👌. Can't thank you enough 🙏🙏🙏🙏🙏
This video was very helpful, they are very few articles that talk about deploying a daphne server and u just did a very comprehensive guide about it ... mazel tov👍
I am searching for this since September 2020.Tried doing tons of things and got screwed every time. And then Mitch to the rescue !! :))
Thank you very much for this awesome tutorial video. I used it to setup Django, Channels, Daphne and Redis on AWS EC2 Ubuntu!
Thanks!
Thank you so much.
I accomplish deploying my web application owing to you!!☺
I am Japanese and not so good at English, but I managed to do.
I couldn't find any good information about Django deploy with channels and Daphne, except for this video.
I will continue to study Django.
頑張れ!💪
1:49:40 you supposed to let nginx handle SSL termination and serve websockets over wss instead of ws.
You are the MAN!! You saved me WEEKS of frustration. Thank you!! 🙏🙏🙏
Your the best Mitch. Keep doing django for us.
Thanks much Mitch. You're the best. Have no words, but thanks much.
You saved my life, bro
Haha yeah lots to know here lol
Hi Adrian, You got it running? I am facing some problem. Although, Mitch has done tremendous job to help us, my daphne service is getting failed every time after one successful running.
thank you mitch very much, you give premium content free
Thank you so much for that one line
I'm facing an issue while creating daphne.service
daphne.service: Failed at step CHDIR spawning /home/django/Gymme/venv/bin/python: No such file or directory
This is the error I'm getting. Can you help me ?
you are a life saver. Forever in debt. 🖤
This is really super helpful, very great effort :)
Amazing explanation and Great Video Thanks alot
Thanks bro can you cover django channels apache2 daphne
thanks man, you are the best
the video is amazing but next time please mention the time for each section
thanks for this much info
Hi Mitch, thank you so much for the detailed documentation on this topic! I have a weird environment problem though which I can't seem to get through.. I got the error message "django.core.exceptions.ImproperlyConfigured: The SECRET_KEY setting must not be empty." However, the secrete_key has its key being permanently stored as the environment variable.. Echoing it would return the correct value.. but Daphne service can't be started because of this issue.. I also tried to write the environment variable to the daphne.service file...Is there anything else that I can look into? Thank you very much in advance!
I had the same problem but was luckily able to fix it quickly.
in your asgi.py file:
before you import modules from apps that you have created you gotta set the the os.environ.setdefault('DJANGO_SETTINGS_MODULE', f'{config("PROJECT_NAME")}.settings') first.
So first the settings then the modules. something like this:
import os
import django
from decouple import config
from channels.routing import get_default_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', f'{config("PROJECT_NAME")}.settings')
django.setup()
import myapp.routing #this after os.environ.setdef....
I have a problem, websocket is connected but I can not send message from server to client.
Thank you so much, this is amazing!
Amazing, thank you so much bro !
Hello, websocket is not working even though I have made all the settings. Do I need to manage rules on the server side? I'm using aws ec2, do I need to install a load balancer? because I have done all the installations in your example and everything works fine but there is no wss connection, I would appreciate if you could give an idea about it.
I have the same problem, did you can resolve?
Thanks sir it is very helpful 🙏🙏🙏
Thanks a lot . It is so useful for me.
to those who can't start on_boot automatically
[Service]
ExecStart=/bin/bash /root/boot.sh
btw, Thank You mitch your tutorial helps a lot! amazing!
for some reason I get this error Failed at step EXEC spawning /root/boot.sh: No such file or directory
@@AyazAmlani me too? what should i do?
Amaizing... excelent video...
if i closed the mobxterm app the server stop immediately
Thanks mitch@
Merci beaucoup, much respect.
Great 👌 thank you🙏
Amazing tutorial Mitch. I was wondering: I am creating a web app to host and it's an app with 20 fixed chat rooms, each room constantly having 5 students (so 100 users total) where members of the group can discuss the group project through chat in their respective room. What do you think the pricing for something like this be? I know it's hard to gauge with so little description, but anything will do. I want to know what I'm getting myself into, as a student a 200$ bill for example is a no-go.
thanks alot you are an angle ❤❤❤❤❤❤❤❤
thanks mitch
Thank you man :)
Thank you mitch!...finally able to run websocket on my website.
you help me with dophne
amazing, thanks
very very helpful
hello sir, you are stopped making video in android?
Next is an android course
Kindly,please give the membership or your project Full course project video give i am a poor family background i live in India into the small village
Thanks you alot!
Very helpfull
Thanks
Cool!
Nice :)
youre a fuckin angel man
git is not a command line for github
Git is whatever I say it is
Django unchained
second
Nightmare. Why all this crap? Why it was impossible to show how it is configured through docker compose containers?
Your real time chat application development i really except but it was many based course project i am studying college so i haven't no money so I real disappointed i followed the all videos
Thanks