From the course: Flask Essential Training
Unlock this course with a free trial
Join today to access over 25,500 courses taught by industry experts.
Deploying to Vercel
From the course: Flask Essential Training
Deploying to Vercel
- [Instructor] Now that your application is done and ready to be shared with the world, let's make it accessible to everyone on the internet. Viewing the app on your local host in the browser is fine, but only you can access it on your computer. Deployment involves uploading the application to a server or hosting platform, and anyone with an internet connection will be able to access your app. Vercel is a platform designed for easy deployment and management of web applications. It provides a seamless experience for developers, and integrates with many popular frameworks, and offers serverless functions. We chose Vercel because it simplifies deployment, scales automatically, and it has a free tier. Pushing updates and new features with Vercel is super simple. Let's walk through deployment steps. The first step is to prepare the application. This is where we want to confirm that all dependencies are listed in the requirements file, and this step ensures that all the libraries and…