From c8b8f4031d7030dfaaff75ac71a0d71d41359eac Mon Sep 17 00:00:00 2001 From: Stefan Koelle Date: Tue, 4 Aug 2026 19:05:31 +0200 Subject: [PATCH] added LICENSE --- LICENSE | 21 +++++++++++++++++++++ README.md | 4 ++++ app/__init__.py | 1 + app/config.py | 1 + app/main.py | 1 + app/templates/index.html | 1 + 6 files changed, 29 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..3556447 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 66cd992..c110967 100644 --- a/README.md +++ b/README.md @@ -149,3 +149,7 @@ mvg-departures/ - Keine Datenbank (nur In-Memory) - Kein Test-Framework vorhanden - Ein `config.yaml` pro Deployment (kein Multi-Tenancy) + +## Lizenz + +MIT License - Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) diff --git a/app/__init__.py b/app/__init__.py index e69de29..dc63dc4 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -0,0 +1 @@ +# Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License diff --git a/app/config.py b/app/config.py index a8128aa..e41f30c 100644 --- a/app/config.py +++ b/app/config.py @@ -1,3 +1,4 @@ +# Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License """Config-Loader für die Stationsliste aus config.yaml.""" import os import yaml diff --git a/app/main.py b/app/main.py index ef4be02..69ef276 100644 --- a/app/main.py +++ b/app/main.py @@ -1,3 +1,4 @@ +# Copyright (c) 2026 Stefan Koelle (https://stefankoelle.de) - MIT License """MVG Departures Monitor - FastAPI App.""" import time import logging diff --git a/app/templates/index.html b/app/templates/index.html index e731a81..8de06dd 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -1,3 +1,4 @@ +