anynamefordeletingthis / hello-flask

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hello FLask

content

set variables

set FLASK_APP=hello
set FLASK_ENV=development 

This will run hello.py file as app, by default it runs app.py, there are two environments, development and production.

run

python -m flask run

-p for port

using HTML templates

Flask uses jinja template engine.

How to create a virtual environment

install virtualenv

pip install virtualenv

create a virtual environment

python3 -m venv venv

activate virtual environment

venv\Scripts\activate

then install required libraries(eg flask) and create a package file.

pip freeze > requirements.txt

Deploy to vercel

  1. create a vercel.json file with following content
{
    "version": 2,
    "builds": [{
        "src": "./hello.py",
        "use": "@vercel/python"
    }],
    "routes": [{
        "src": "/(.*)",
        "dest": "/hello.py"
    }]
}
  1. then install required libraries(eg flask) and create a package file.

  2. create requirements.txt file pip freeze > requirements.txt

About


Languages

Language:HTML 42.6%Language:CSS 37.8%Language:Python 19.7%