From a0f17d0b1af58ddf44916b6e63778200f4bbd94a Mon Sep 17 00:00:00 2001 From: Heiko Ludwig Date: Fri, 5 Apr 2024 12:14:52 +0200 Subject: [PATCH] Initial commit. --- .gitignore | 57 ++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 4 ++++ requirements.txt | 1 + 3 files changed, 62 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..32c3fa1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,57 @@ +# These are some examples of commonly ignored file patterns. +# You should customize this list as applicable to your project. + +# temporary editor files +*.swp +*~ + +# Python virtual environment +virtualenv +.env + +# Node artifact files +node_modules/ +dist/ + +# Compiled Java class files +*.class + +# Compiled Python bytecode +*.py[cod] +__pycache__ + +# Log files +*.log + +# Package files +*.jar + +# Maven +target/ +dist/ + +# JetBrains IDE +.idea/ + +# Unit test reports +TEST*.xml + +# Generated by MacOS +.DS_Store + +# Generated by Windows +Thumbs.db + +# Applications +*.app +*.exe +*.war + +# Large media files +*.mp4 +*.tiff +*.avi +*.flv +*.mov +*.wmv + diff --git a/README.md b/README.md new file mode 100644 index 0000000..4e21132 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Flask Tutorial + +Here I will work through the Flask tutorial at https://flask.palletsprojects.com/en/3.0.x/tutorial/ + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e3e9a71 --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +Flask