Phenomenal, phenomenal, phenomenal... After 3 days of nonsense with other tutorials, finally got my project online. Thank you, Arpan!
@juliah8071 Жыл бұрын
This is the best tutorial I've ever watched when it comes to flask... literally the only thing that worked for me - thank you so much!
@dajith13172 жыл бұрын
Thank a lot ❤before I saw this video. I wasted one day.... But now I got ❤❤❤
@ArpanNeupaneProductions2 жыл бұрын
Glad I could help
@SamuelBrand-u8t Жыл бұрын
Thanks so much! Everything went super smoothly except from the very last command. With 'git push heroku main', it says 'heroku' does not appear to be a repository, I am on windows. Have I set something up badly?
@Stranger-uj4ck6 ай бұрын
Great job!! This was very helpful. Thanks for making it
@hussainahmadwaien7226 Жыл бұрын
Can I edit the code after deploy or I have to deploy again?
@ghazalmasri740011 ай бұрын
idk what to say but just ! UUUUUUU SAVEDDDD MY LIFFFFFFFFFFFFEEEEE ALL LOVE AND RESPECT
@hashamyounas386410 ай бұрын
'git push heroku main' says 'heroku' does not appear to be a repository...
@elsymakena30342 жыл бұрын
This is such a helpful video. Though I'm getting a buildpack error, what can I do?
@ArpanNeupaneProductions2 жыл бұрын
What was the error?
@Kjeii Жыл бұрын
hi thank you for sharing video!! have you ever deal with error about "address already in use" & "port 5000 is in use in another program "when beginning to deploy new project? that always happens to me, even though i do not deploy any program yet. I also changed another port like 8000, it still did not work.
@ssublexff34657 ай бұрын
to late to reply for sure but in case someone might need it.... You can go to your task-manager and check if there is some active application that is running on X port you are looking for. Another solution would be to check the port via terminal (CMD) i user windows so here is the command netstat -aon | findstr :5000 (I've taken port 5000 just as an example) After that you can simply change the port of x app (always check if there migh be some other app running on this new port you are thinking of running your program)
@saidalkharusi7824 Жыл бұрын
Wish all tutorials were like this, we wouldn't need 2x button if they were.
@shivamsharma-zv7zl3 жыл бұрын
is deploying venv on github is also imp??
@ArpanNeupaneProductions3 жыл бұрын
Not necessarily, but I recommend that you do because if someone else wants to download your code and run it, they can just activate the virtual environment which has all the packages.
@Jakku_Azzo6 ай бұрын
"Heroku is a platform we can use to host WA-" loved the video tho
@ArpanNeupaneProductions6 ай бұрын
lmao yeah the audio cut off 😂😂😂
@canklc57722 жыл бұрын
Thank you very mcuh for the details about how to create Procfile. I looked for this info for hours. file name + app. Thanks mate
@ArpanNeupaneProductions2 жыл бұрын
Of course!
@oscargalvez7 Жыл бұрын
Thanks for the tutorial, it was amazing! The only thing is that I wanted a free plan to start testing my app and it seems Heroku removed their free tier on November 2022, so I got an error to set up a payment method 😅
@ArpanNeupaneProductions Жыл бұрын
Yeah lol, I use Vercel/Netlify instead for hosting now
@oscargalvez7 Жыл бұрын
@@ArpanNeupaneProductions lol good to know, I'll try Vercel then, thanks for the response!
@LouisaMacchiato4 ай бұрын
Thank you very very much! ❤
@yagnakarthikvaka14614 ай бұрын
Super! by creating private git repo no tutorial shown this.
@jatinoza30992 жыл бұрын
what is the name of vs code theme you are using here? and do anyone know more good vs code themes
@ArpanNeupaneProductions2 жыл бұрын
I believe in this video I was using the Panda Theme.
@satishgaire3 жыл бұрын
great video
@ArpanNeupaneProductions3 жыл бұрын
Thank you so much !!
@lokranjanp35205 ай бұрын
use ssh instead of http for adding remote origins.
@sudo-abhinav2 жыл бұрын
can we add venv file in gitignore file????
@ArpanNeupaneProductions2 жыл бұрын
Sure
@AmielT5 ай бұрын
Immeeeeeeeeediate subscribe and like. “ The best clear concise and straight to the point tutorial I have ever seen. Kudos bro. Earned a sub from me. 👍🏾
@ankitchatterjee16152 жыл бұрын
What if a venv is not created ?
@willuloveme77442 жыл бұрын
Create it by yourself. Open terminal and go to the project's directory, then run python3 -m venv venv_name
@ankitchatterjee16152 жыл бұрын
@@willuloveme7744 Okay Thanks 🧀 But is it compulsory to make it ?
@willuloveme77442 жыл бұрын
@@ankitchatterjee1615 well, it depends. You see, when you use venv, all the packages are installed only within it, they do not affect the main python files on your computer. It is a good way to sort these packages and to keep your main python files clean.
@ankitchatterjee16152 жыл бұрын
@@willuloveme7744 Alright Thank you very much 🧀🍫
@viacheslavgurov4371 Жыл бұрын
Hello, thanks for your job. I got stumbled here. Help, please. ! [remote rejected] main -> main (pre-receive hook declined) error: failed to push some refs to "my-app"
@lucasolarreaga4 ай бұрын
I love you !!!!! I was so done...
@turing49912 жыл бұрын
Gunicorn is not starting.............. my deadline is today :)
@areej22402 ай бұрын
credit information is required
@Kc_bin3 жыл бұрын
New Video YAY
@paulq02464 ай бұрын
Thanks for this ! Can someone tell me why the official documentation is complete garbage?
@huynhthanhliem11x139 ай бұрын
What does 550h free mean?
@jaimeviloriogreen2 жыл бұрын
Thank's a lot due!
@ArpanNeupaneProductions2 жыл бұрын
You’re welcome!
@thedjangoway90522 жыл бұрын
how about with flask sqlachemy db?
@ArpanNeupaneProductions2 жыл бұрын
You can connect a Heroku PostgreSQL DB to your Heroku app through the settings and set the URI of the database to the URI of the PostgreSQL DB in your Flask app.
@thedjangoway90522 жыл бұрын
@@ArpanNeupaneProductions wow that's a fast reply. i wish you will create discord channel for us.
@drashtithakkar99142 жыл бұрын
HINT: This occurs when Heroku cannot detect the buildpack to use for this application automatically. i am getting this error, searched over stackoverflow too , couldnt find soln please help