diff --git a/README.md b/README.md index 0165a77..17b144d 100644 --- a/README.md +++ b/README.md @@ -1,59 +1,107 @@ -

Laravel Logo

+# Fitnessblog -

-Build Status -Total Downloads -Latest Stable Version -License -

+**Fitnessblog** ist ein Laravel-basiertes Blog-System für Fitness-/Lifestyle-Content mit öffentlichem Frontend und einem Admin-Backend zur Verwaltung von Beiträgen, Kategorien, Slider und Website-Einstellungen. -## About Laravel +--- -Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable and creative experience to be truly fulfilling. Laravel takes the pain out of development by easing common tasks used in many web projects, such as: +## Überblick -- [Simple, fast routing engine](https://laravel.com/docs/routing). -- [Powerful dependency injection container](https://laravel.com/docs/container). -- Multiple back-ends for [session](https://laravel.com/docs/session) and [cache](https://laravel.com/docs/cache) storage. -- Expressive, intuitive [database ORM](https://laravel.com/docs/eloquent). -- Database agnostic [schema migrations](https://laravel.com/docs/migrations). -- [Robust background job processing](https://laravel.com/docs/queues). -- [Real-time event broadcasting](https://laravel.com/docs/broadcasting). +Das Projekt stellt eine klassische Blog-Struktur bereit: -Laravel is accessible, powerful, and provides tools required for large, robust applications. +- **Frontend**: Blog-Startseite, Beiträge nach Kategorien/Tags/Autoren, Suche, Kontaktformular +- **Backend (Admin)**: Login/Passwort-Reset, Dashboard, Beitragsverwaltung, Kategorien, Slider, Settings, Newsletter-Versand -## Learning Laravel +--- -Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. You can also check out [Laravel Learn](https://laravel.com/learn), where you will be guided through building a modern Laravel application. +## Tech-Stack -If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains thousands of video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library. +### Backend +- **Framework:** Laravel (Projekt nutzt moderne Laravel-Struktur) +- **Sprache:** PHP (empfohlen **PHP >= 8.2**) +- **Datenbank:** MySQL/MariaDB (alternativ PostgreSQL/SQLite möglich) +- **E-Mail:** Custom SMTP-Konfiguration über `CMAIL_*` (für Kontakt & Newsletter) +- **Queues/Jobs:** Newsletter-Versand erfolgt über Queue-Jobs (falls Worker aktiv) -## Laravel Sponsors +### Frontend +- **Build Tool:** Vite +- **CSS:** Tailwind CSS +- **HTTP/AJAX:** Axios -We would like to extend our thanks to the following sponsors for funding Laravel development. If you are interested in becoming a sponsor, please visit the [Laravel Partners program](https://partners.laravel.com). +### Verwendete Pakete (Auszug) +- **SEO:** `artesaos/seotools` (Meta-Tags, OpenGraph, Twitter Cards) +- **Sitemap:** `spatie/laravel-sitemap` (Sitemap-Generierung) +- **Slugs:** `cviebrock/eloquent-sluggable` (sprechende URLs) +- **Bildbearbeitung:** `intervention/image` (Thumbnails/Resizes) +- **Dateimanager:** `barryvdh/laravel-elfinder` (Medienverwaltung) +- **UI:** Livewire (interaktive Komponenten) +- **Mail:** `phpmailer/phpmailer` +- **Image Crop:** `sawastacks/kropify-laravel` (z.B. Profil/Logo-Zuschnitt) -### Premium Partners +--- -- **[Vehikl](https://vehikl.com)** -- **[Tighten Co.](https://tighten.co)** -- **[Kirschbaum Development Group](https://kirschbaumdevelopment.com)** -- **[64 Robots](https://64robots.com)** -- **[Curotec](https://www.curotec.com/services/technologies/laravel)** -- **[DevSquad](https://devsquad.com/hire-laravel-developers)** -- **[Redberry](https://redberry.international/laravel-development)** -- **[Active Logic](https://activelogic.com)** +## Features -## Contributing +### Frontend (öffentlich) +- **Startseite** mit SEO-Informationen aus den Einstellungen +- **Kategorien-Ansicht** (Posts nach Kategorie) +- **Autor-Seiten** (Posts nach Autor) +- **Tag-Seiten** (Posts nach Tags) +- **Suche** nach Beiträgen +- **Startseiten-Slider** (Slides aus dem Backend) +- **Sidebar-Widgets** + - Neueste Beiträge + - Kategorien mit Beitragsanzahl + - Tag-Übersicht +- **Lesedauer-Anzeige** (automatisch berechnet) +- **Kontaktformular** (`/contact`) inkl. Mailversand +- **Sitemap** (`/sitemap.xml`) -Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](https://laravel.com/docs/contributions). +### Admin-Backend +- **Login** und **Passwort-Reset** (Token-basiert) +- **Dashboard** mit Kennzahlen (Posts/Tags/Newsletter-Abonnenten) +- **Beitragsverwaltung** + - Erstellen/Bearbeiten/Löschen + - Bild-Upload pro Beitrag + - Automatische Bild-Generierung: + - Thumbnail (z.B. 250×250) + - Resized Preview (z.B. 512×320) + - SEO-Felder (Meta Keywords/Description, strukturierte Daten) + - Sichtbarkeit (Draft/Published) +- **Kategorien & Unterkategorien** +- **Slider-Verwaltung** (Bilder/Reihenfolge/Status) +- **Settings** + - Seitentitel / Meta-Description / Keywords + - Site-E-Mail + - Social Links + - Logo & Favicon Upload +- **Profil** + - Profilbild Upload (ersetzt vorheriges Bild) +- **Newsletter** + - Abonnenten-Verwaltung + - Optionaler Versand an alle Abonnenten beim Veröffentlichen eines Posts -## Code of Conduct +--- -In order to ensure that the Laravel community is welcoming to all, please review and abide by the [Code of Conduct](https://laravel.com/docs/contributions#code-of-conduct). +## Installation (lokal) -## Security Vulnerabilities +### Voraussetzungen +- PHP >= 8.2 +- Composer +- Node.js (LTS) + npm +- Datenbank (z.B. MariaDB/MySQL) +- Git -If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [taylor@laravel.com](mailto:taylor@laravel.com). All security vulnerabilities will be promptly addressed. +### Setup +```bash +git clone ssh://git@git.magicpotter.at:2222/Magicpotter/Fitnessblog.git +cd Fitnessblog -## License +composer install +npm install -The Laravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT). +php artisan key:generate +php artisan migrate +php artisan storage:link + +npm run dev +# oder: npm run build