commit a0f17d0b1af58ddf44916b6e63778200f4bbd94a Author: Heiko Ludwig Date: Fri Apr 5 12:14:52 2024 +0200 Initial commit. 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