This repository has been archived on 2026-08-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
onlypets/start-onlypets-dev.bat
admin 831e6b0cbd Phase 2.1: Feed angebunden & Visibility serverseitig enforced (#245 #246)
- Echter /feed Endpoint angebunden (Mock entfernt)
- Visibility-Regeln serverseitig umgesetzt (public / followers)
- RequestUser als zentraler Auth-Typ vereinheitlicht
- Visibility-Leak behoben
2026-01-01 14:08:14 +01:00

25 lines
554 B
Batchfile

@echo off
title OnlyPets Dev Starter
echo ===============================
echo Starting OnlyPets (DEV)
echo ===============================
REM --- Backend ---
echo Starting Backend on port 3001...
start "OnlyPets Backend" cmd /k ^
cd /d C:\Projekte\OnlyPets\backend ^& ^
npm run dev
REM --- Frontend ---
echo Starting Frontend on port 3000...
start "OnlyPets Frontend" cmd /k ^
cd /d C:\Projekte\OnlyPets\frontend ^& ^
npm run dev
echo.
echo All services started.
echo Backend -> http://localhost:3001
echo Frontend -> http://localhost:3000
echo.