From 7c0d3e015f2fc1fe0ebdfca819d98d2a5abd8223 Mon Sep 17 00:00:00 2001 From: Mitsuo Tokumori Date: Fri, 27 Oct 2023 17:29:44 -0500 Subject: Init. https://flask.palletsprojects.com/en/3.0.x/tutorial --- .gitignore | 14 ++++++++++++++ README.md | 11 +++++++++++ 2 files changed, 25 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1d9734b --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +.venv/ + +*.pyc +__pycache__/ + +instance/ + +.pytest_cache/ +.coverage +htmlcov/ + +dist/ +build/ +*.egg-info/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..bd987c7 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# flask-tutorial + +## Installation + +```bash +python -m venv .venv +source .venv/bin/activate + +pip install -r requirements.txt +flask --app flaskr run --debug +``` -- cgit v1.2.3