From bf936fb439beca6dfee861fa7ff3302e6b8ed514 Mon Sep 17 00:00:00 2001 From: Copilot Date: Sun, 12 Apr 2026 21:31:52 +0200 Subject: [PATCH] docs: Add LICENSE, CONTRIBUTING.md, CHANGELOG.md, and .gitignore - Add MIT License for open source clarity - Add .gitignore to prevent unwanted files in commits - Add CONTRIBUTING.md guidelines for contributors - Add CHANGELOG.md template for version tracking Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .gitignore | 36 ++++++++++++++++++++++++++++++++++++ CHANGELOG.md | 34 ++++++++++++++++++++++++++++++++++ CONTRIBUTING.md | 46 ++++++++++++++++++++++++++++++++++++++++++++++ LICENSE | 21 +++++++++++++++++++++ 4 files changed, 137 insertions(+) create mode 100644 .gitignore create mode 100644 CHANGELOG.md create mode 100644 CONTRIBUTING.md create mode 100644 LICENSE diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f0c7210 --- /dev/null +++ b/.gitignore @@ -0,0 +1,36 @@ +# OS +.DS_Store +Thumbs.db + +# IDEs +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# Backups +*.bak +*.backup + +# Logs +*.log +logs/ + +# Dependencies +node_modules/ +__pycache__/ +venv/ +env/ + +# Build outputs +build/ +dist/ +*.o +*.a +*.so + +# Temporary files +.tmp/ +temp/ +*.tmp diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..1752745 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,34 @@ +# Changelog + +Alle bemerkenswerten Änderungen an diesem Projekt werden in dieser Datei dokumentiert. + +Das Format basiert auf [Keep a Changelog](https://keepachangelog.com/de/1.0.0/), +und dieses Projekt folgt [Semantic Versioning](https://semver.org/lang/de/). + +## [Unreleased] + +### Added +- + +### Changed +- + +### Deprecated +- + +### Removed +- + +### Fixed +- + +### Security +- + +## [1.0.0] - 2026-04-12 + +### Added +- Initiale Version + +[Unreleased]: https://github.com/Konnos/AI-Prompts/compare/v1.0.0...HEAD +[1.0.0]: https://github.com/Konnos/AI-Prompts/releases/tag/v1.0.0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..10f53af --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,46 @@ +# Contribution Guidelines + +Vielen Dank dafür, dass Sie zu diesem Projekt beitragen möchten! + +## Wie kann ich beitragen? + +### Bugs berichten +- Erstellen Sie ein Issue mit dem Label "bug" +- Beschreiben Sie das Problem so detailliert wie möglich +- Geben Sie Schritte zur Reproduktion an +- Teilen Sie Ihre Umgebung mit (OS, Software-Version, etc.) + +### Features vorschlagen +- Erstellen Sie ein Issue mit dem Label "enhancement" +- Beschreiben Sie das Feature und seinen Nutzen +- Geben Sie Beispiele für die Verwendung an + +### Code beitragen +1. **Fork** dieses Repository +2. **Clone** Ihren Fork: `git clone ` +3. **Branch erstellen**: `git checkout -b feature/your-feature` +4. **Änderungen committen**: `git commit -m 'Add some feature'` +5. **Push**: `git push origin feature/your-feature` +6. **Pull Request** erstellen + +## Code-Stil + +- Folgen Sie den bestehenden Code-Konventionen +- Schreiben Sie aussagekräftige Commit-Messages +- Dokumentieren Sie Ihre Änderungen + +## Pull Request Prozess + +1. Update die Dokumentation wenn nötig +2. Sorgen Sie dafür, dass Tests bestehen (sofern vorhanden) +3. Erstellen Sie einen PR mit klarer Beschreibung +4. Warten Sie auf Review + +## Lizenz + +Durch das Einreichen von Beiträgen erklären Sie sich damit einverstanden, dass diese unter derselben Lizenz wie das Projekt lizenziert sind. + +## Fragen? + +Erstellen Sie ein Issue oder kontaktieren Sie die Maintainer. + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..3fae520 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 Konnos + +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.