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>
This commit is contained in:
Copilot
2026-04-12 21:31:52 +02:00
parent a216b83204
commit bf936fb439
4 changed files with 137 additions and 0 deletions

36
.gitignore vendored Normal file
View File

@@ -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

34
CHANGELOG.md Normal file
View File

@@ -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

46
CONTRIBUTING.md Normal file
View File

@@ -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 <your-fork-url>`
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.

21
LICENSE Normal file
View File

@@ -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.