- The simple flask app built on the
uv
(python project management tool).
- Pycharm (latest) or
- VSCode (latest)
- Python >=
3.7
- Pip (latest)
- Flask (latest)
- UV (latest)
-
The installation of uv package:
-
python -m pip install uv
-
uv --version
-
-
The project creation:
- Select any workspace to create the sample flask project
- Go to the workspace and then
-
uv init webapp
-
- Create the Python Virtual Environment
-
uv venv .venv
-
- Install the necessary packages for your project
-
or
uv add <package1> <package2> ...
-
uv pip install <package_name>
-
- Run the webapp
-
uv run app/main.py
-