# Wari App 💰
**Envoyer et recevoir de l'argent via Mobile Money**
Send and receive money via mobile money with sub-2% fees, biometric security, and full accessibility.
## 🎯 Overview
Wari App is a modern mobile money transfer platform designed for users in Côte d'Ivoire and West Africa. It enables seamless, secure, and affordable money transfers with a focus on accessibility and compliance.
### ✨ Key Features
- **Ultra-Low Fees** ( = 18.0.0
- npm >= 9.0.0
- Expo CLI: `npm install -g expo-cli`
- PostgreSQL installed locally or access to PostgreSQL service
- Redis installed locally or access to Redis service
### Installation
1. **Clone the repository**
\`\`\`bash
git clone
github.com
cd wari-app
\`\`\`
2. **Install dependencies**
\`\`\`bash
npm install
\`\`\`
3. **Configure environment variables**
\`\`\`bash
cp .env.example .env
# Edit .env with your configuration
\`\`\`
4. **Set up the database**
\`\`\`bash
npm run db:migrate
npm run db:seed
\`\`\`
5. **Start development server**
**Mobile (iOS/Android via Expo):**
\`\`\`bash
npm start
# Press 'a' for Android or 'i' for iOS
\`\`\`
**Web:**
\`\`\`bash
npm run web
\`\`\`
**Backend:**
\`\`\`bash
npm run backend:dev
\`\`\`
## 📁 Project Structure
\`\`\`
wari-app/
├── src/ # Frontend (React Native)
│ ├── components/ # UI Components
│ │ ├── auth/ # Authentication flows
│ │ ├── transfer/ # Money transfer UI
│ │ ├── dashboard/ # Analytics & history
│ │ └── accessibility/ # Accessibility components
│ ├── services/ # Business logic
│ │ ├── auth/ # Auth & encryption
│ │ ├── payment/ # Payment processing
│ │ ├── notification/ # Push & SMS alerts
│ │ └── offline/ # Offline support
│ ├── hooks/ # Custom React hooks
│ ├── store/ # Redux state
│ ├── utils/ …