Skip to content

acmcsufoss/fullypack_flask_vercel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flask-Vercel Hackpack

A premade Flask template!

About FullyPacks 🐘🎁

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!

About Flask

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.

How to Deploy

Automatic

Manual

  1. Use this template by clicking "Use this template" button above or click here
  2. Deploy your new project to Vercel

How to Run Locally

  1. Install Python 3.7 or later

  2. Use this template by clicking "Use this template" button above or click here and download the zip folder or clone it using Git

  3. Open the folder in VSCode

  4. Create a virtual environment:

    python3 -m venv venv
    
  5. Activate the virtual environment:

    Linux

    source venv/bin/activate
    

    Windows

    .\venv\Scripts\activate
    
  6. Install dependencies:

    pip install -r requirements.txt
    
  7. Run the app:

    flask --app api/index.py run --debug