How to Deploy a Fullstack Django Web App on Vercel.

preview_player
Показать описание
In this tutorial, I will guide you through the process of deploying a Django web application on Vercel, a popular cloud platform for web development. You will learn how to configure your Django app to work with Vercel's serverless architecture, set up your Vercel account, and deploy your app to the platform. Whether you're a beginner or an experienced developer, this video will provide you with step-by-step instructions to get your Django web app up and running on Vercel in no time.

Push your Django project on GitHub:

Let's connect:-

Рекомендации по теме
Комментарии
Автор

Who all are facing "pip not found" error, change node version from 20.x to 18.x in project deployment setting and redeploy

abdurrahmaan
Автор

thanks Clinton, its the only tutorial i have found so far that actually worked for me

daveanvs
Автор

You are doing well brother, no unnecessary terminologies, no unnecessary explanation, just straight to the point with each steps clear and easy to follow.

attahchristian
Автор

your work is amazing, I have successfully deployed my django aplication

alejandra-garcias
Автор

a very greate and accurate content thank you brother i was trying to my app from last few weeks but geettng an error just and seach searched everywhere but no one is teaching about that dabase content the way you thanks once again...

arcadianthenics
Автор

Mine wasn't deploying, I think it was due to my project structure.
But it's working now, thanks a lot.
I really like your videos.

christiannwachukwu
Автор

Thank you for sharing this resourceful content. Great love from Uganda

allanbakwanamaha
Автор

is it possible that we can deploy our full fledge django Ecom site with postgresql database in the same process which you are telling us in this video

hassanghani
Автор

THANK YOU! :) amazing job and ty for amazing up to date tutorial

anna_lorencova
Автор

Great work Clinton, actually am getting 500 error serverless function crash

douglasemmanuel
Автор

Thanks a lot for this video
It is straight forward, not complicated as heroku

xx
Автор

hello clinthon.. thank you for the tutorial, please, is the git repo private or publice (or any of them can be used on vercel)?

bemgbautor
Автор

Thanks for This, How do we store staticfiles in vercel blob

SylvesterStadham
Автор

Hey! Thanks so much for your help out there!! It seems I saw one of your different video too, "deploying Django to Digital ocean'..
Hm am thinking you are from Nigeria, if true please, am from Bamenda-Cameroon, , do you have an idea which financial institutions operate in Nigeria or even Cameroon their Cards are less likely to be declined by Digital ocean?....

I have been facing hard times to complete my account creation in digital ocean because my card keep being declined..( using a debit card optained from UBA)

Please if you can help a bro, please do🙏.. just a little information about which banks in Africa are not being declined

anthonychianain
Автор

I will like to know if this video can also help configure satic files like html, css, js and images to reflect in the deployment on vercel.. kindly help... i have been searching youtube like all day and i would like to know. Thank You, i await your response.

LearningSpectrums
Автор

@CodeWithClinton Great finally deployed😁

bigonhim
Автор

Hi Clinton, this video is the tutorial I have found is actually fit for what am I doing. But after a day and deploying it, my project in vercel gives me a 404 error, but when I run it locally it still works. I check the railway and under the data tab it say "We are unable to connect to the database over the public network." Is it possible because of this? and what possible solution for this? Thanks!

arvincalleja
Автор

Add the lines of code below into your vercel.json file.

{
"version": 2,
"builds": [
{
"src": "projectname/wsgi.py",
"config": { "maxLambdaSize": "15mb", "runtime": "python3.9" }
},
{
"src": "build_files.sh",
"config": {
"distDir": "staticfiles_build"
}
}
],
"routes": [
{
"src": "/static/(.*)",
"dest": "/static/$1"
},
{
"src": "/(.*)",
"dest": "projectname/wsgi.py"
}
]
}

CodeWithClinton
Автор

Nice work sir. When I try to make a post request it doesn’t insert to the database on railway. But if I do that on local host it works. Please help

justice
Автор

Thank you for the great content.. is there any configuration needed for media files in your project while deploying in vercel?

irfanasulaiman