# Fitola Deployment

> Deployment automation skill for Fitola

- Skill: `saanjaypatil78/fitola-deployment` (Agent Skill)
- Install (CLI): `npx skillmds@latest add saanjaypatil78/fitola-deployment`
- Raw SKILL.md: https://api.skillmd.com/api/skills/saanjaypatil78/fitola-deployment/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: saanjaypatil78 (https://skillmd.com/u/saanjaypatil78)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/saanjaypatil78/fitola-deployment

---


# Fitola Deployment

Automated deployment for Fitola backend and mobile apps.

## Deployment Targets

### Backend (Vercel)
```bash
# Deploy to production
vercel --prod

# Deploy to staging
vercel
```

### Mobile (Android)
```bash
# Build APK
flutter build apk --release

# Build App Bundle
flutter build appbundle --release
```

### Mobile (iOS)
```bash
# Build for App Store
flutter build ios --release
```

### Web
```bash
# Build web app
flutter build web --release
```

## CI/CD Pipeline
Automated testing, building, and deployment via GitHub Actions.

## Best Practices
1. Test before deploy
2. Use environment variables
3. Implement health checks
4. Enable monitoring
5. Plan rollback strategy

