commit daea26583bb5b2255ff61f3e03fbb154ca1b843c Author: Nick Adam Date: Thu Nov 20 13:28:48 2025 +0100 first commit diff --git a/README.md b/README.md new file mode 100644 index 0000000..dd6b0f0 --- /dev/null +++ b/README.md @@ -0,0 +1,54 @@ +# Certigo Addon + +Ein modernes React-Projekt mit Tailwind CSS und Go-Backend. + +## Projektstruktur + +``` +certigo-addon/ +├── frontend/ # React Frontend mit Tailwind CSS +│ ├── src/ +│ │ ├── components/ +│ │ ├── pages/ +│ │ └── App.jsx +│ └── package.json +└── backend/ # Go Backend + └── main.go +``` + +## Installation und Start + +### Frontend + +```bash +cd frontend +npm install +npm run dev +``` + +Das Frontend läuft auf http://localhost:3000 + +### Backend + +```bash +cd backend +go mod download +go run main.go +``` + +Das Backend läuft auf http://localhost:8080 + +## Features + +- ✅ Modernes React Frontend mit Tailwind CSS +- ✅ Sidebar Navigation +- ✅ Seiten: Home, Spaces, Impressum +- ✅ Go Backend mit REST API +- ✅ CORS Support für Frontend-Backend Kommunikation + +## Seiten + +- **Home**: Startseite mit System-Status +- **Spaces**: Verwaltung von Spaces +- **Impressum**: Rechtliche Informationen +