You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AI-powered personalized fitness dashboard. Connect your Strava account, sync your activity data, and let Google Gemini generate a tailored 7-day training plan based on your history and goals.
cd backend
python -m venv venv &&source venv/bin/activate
pip install -r requirements.txt
cp .env.example .env
# Edit .env with your keys
python manage.py migrate
python manage.py runserver
2. Frontend
cd frontend
npm install
cp .env.local.example .env.local
# Edit .env.local
npm run dev
3. Docker (all-in-one)
cp backend/.env.example backend/.env
cp frontend/.env.local.example frontend/.env.local
# Fill in real values in both .env files
docker compose up --build