A premade Flask template!
Welcome to fullypack_flask_vercel
, one of a curated collection of Github templates designed to kickstart your project and help you get up and running in no time!
Flask is a web framework that allows you to create web applications using the Python programming language. In simple terms, Flask provides you with tools and features that make it easier to build web applications.
A web application is a software program that runs in a web browser. For example, when you use Facebook or Instagram, you're using a web application.
Flask makes it easy to create a web application by providing a set of functions and tools that help you:
- Define the structure of your application, such as the different pages or URLs users can access.
- Define the behavior of your application, such as what happens when a user clicks a button or fills out a form.
- Store and retrieve data, such as user information or images.
- Click here
- Use this template by clicking "Use this template" button above or click here
- Deploy your new project to Vercel
-
Install Python 3.7 or later
-
Use this template by clicking "Use this template" button above or click here and download the zip folder or clone it using Git
-
Open the folder in VSCode
-
Create a virtual environment:
python3 -m venv venv
-
Activate the virtual environment:
Linux
source venv/bin/activate
Windows
.\venv\Scripts\activate
-
Install dependencies:
pip install -r requirements.txt
-
Run the app:
flask --app api/index.py run --debug