# πŸ“… CALENDRIER DE PRODUCTION COMPLET ## Green Land Centrafrique - Timeline 18 Mois (Semaine par Semaine) **Plateforme EdTech - Lancement et Enrichissement** **PΓ©riode :** Juin 2026 - DΓ©cembre 2027 **Objectif :** 5 modules, certificats, 1000+ apprenants --- ## 🎯 PHASES GLOBALES ``` PHASE 1 : INFRASTRUCTURE & MVP (Semaines 1-16 | 4 mois) PHASE 2 : CONTENU MVP (Semaines 5-16 | En parallΓ¨le) PHASE 3 : ENRICHISSEMENT (Semaines 17-52 | 9 mois) PHASE 4 : SCALE & OPTIMISATION (Semaines 53-72 | 5 mois) ``` --- ## πŸ“Š PHASE 1 : INFRASTRUCTURE & MVP (Semaines 1-16) ### **SEMAINE 1-2 : PLANIFICATION & Γ‰QUIPE** **Lead :** Chef Projet | **Γ‰quipe :** Tous ``` ☐ Jour 1-2 : Kick-off meeting (tous les stakeholders) └─ Valider scope, budget, timeline └─ Assigner rΓ΄les & responsabilitΓ©s └─ Γ‰tablir processus communication ☐ Jour 3-5 : Documentation de spΓ©cifications β”œβ”€ User stories (apprenants, enseignants, admins) β”œβ”€ Wireframes UI/UX pour 5 pages principales β”œβ”€ API specs prΓ©liminaires └─ Data model design ☐ ParallΓ¨le : Recrutement β”œβ”€ 1 DΓ©veloppeur Senior (Backend) β”œβ”€ 1 Frontend Developer β”œβ”€ 1 PΓ©dagogue/Instructional Designer └─ Entretiens & onboarding semaine 2 DΓ‰LIV ERABLES : β†’ SpΓ©cifications document (10 pages) β†’ Wireframes (Figma) β†’ Org chart + contact list β†’ Budget detail breakdown ``` --- ### **SEMAINE 3-4 : SETUP INFRASTRUCTURE** **Lead :** Dev Senior | **Γ‰quipe :** Devs, DevOps ``` JOUR 1-2 : ARCHITECTURE ☐ Setup AWS account (ou GCP) └─ VPC, Security groups, IAM roles ☐ Database provisioning └─ PostgreSQL RDS (prod + staging) ☐ CDN configuration └─ CloudFront pour assets statiques ☐ Email service └─ SendGrid ou Mailgun pour notifications JOUR 3-5 : MOODLE / OPEN EDX SETUP ☐ Server provisioning (t3.large EC2) ☐ Moodle installation & config └─ Language packs (FR + EN) └─ Plugin installation (quiz, certificats, etc.) ☐ Database backup strategy ☐ SSL certificate (Let's Encrypt auto) JOUR 6-10 : TESTING & DOCUMENTATION ☐ Infrastructure testing └─ Load test simulation (100 concurrent users) └─ Failover testing ☐ Deployment documentation ☐ Emergency runbook COSTS : AWS : ~500$ (1 month) Moodle licensing : $0 (Open source) Domain + SSL : $50 (annual) DELIVERABLES : β†’ Architecture diagram β†’ Infrastructure code (Terraform/CloudFormation) β†’ Deployment guide β†’ Monitoring dashboard setup ``` --- ### **SEMAINE 5-8 : FRONTEND DEVELOPMENT (PHASE 1)** **Lead :** Frontend Dev | **Γ‰quipe :** Designers, Frontend ``` SEMAINE 5 : Design System & Mockups ☐ Figma design system setup β”œβ”€ 50+ components (buttons, cards, forms, etc.) β”œβ”€ GLCA branding (colors, fonts, spacing) └─ Dark/light mode variants ☐ Page mockups (Figma) β”œβ”€ Homepage β”œβ”€ Course catalog β”œβ”€ Player/lesson page β”œβ”€ Dashboard └─ Quiz interface SEMAINE 6-8 : React/Vue Component Development ☐ React setup β”œβ”€ Create React App / Vite β”œβ”€ Redux or Context API for state β”œβ”€ React Router for navigation └─ Testing setup (Jest + React Testing Library) ☐ Component implementation (priority order) β”œβ”€ Header/Navigation (Week 6, Day 1) β”œβ”€ Course Card (Week 6, Day 2) β”œβ”€ Video Player wrapper (Week 6, Day 3-5) β”œβ”€ Dashboard layout (Week 7, Day 1-2) β”œβ”€ Quiz interface (Week 7, Day 3-5) β”œβ”€ User profile (Week 8, Day 1-2) β”œβ”€ Forms (enrollment, etc.) (Week 8, Day 3-5) ☐ Mobile responsiveness β”œβ”€ Breakpoints : 320px, 768px, 1024px, 1440px β”œβ”€ Touch interaction handling └─ Lighthouse performance > 90 DELIVERABLES : β†’ Component library (50+ components) β†’ Responsive frontend (React) β†’ Performance metrics (Lighthouse report) ``` --- ### **SEMAINE 9-10 : BACKEND API DEVELOPMENT** **Lead :** Backend Dev ``` SEMAINE 9 : Core API Setup ☐ Express.js / Django API setup β”œβ”€ Authentication (JWT) β”œβ”€ Authorization (Role-based) β”œβ”€ Rate limiting └─ CORS config ☐ Database schema implementation β”œβ”€ Users table (id, email, password, profile) β”œβ”€ Courses table β”œβ”€ Enrollments table (user_id, course_id, progress) β”œβ”€ Lessons table β”œβ”€ Quiz table + responses └─ Certificates table SEMAINE 10 : API Endpoints (MVP) ☐ Auth endpoints β”œβ”€ POST /auth/register β”œβ”€ POST /auth/login β”œβ”€ POST /auth/logout β”œβ”€ POST /auth/refresh-token ☐ Course endpoints β”œβ”€ GET /courses (list all) β”œβ”€ GET /courses/:id (details) β”œβ”€ GET /courses/:id/lessons ☐ Enrollment endpoints β”œβ”€ POST /enrollments β”œβ”€ GET /enrollments/me β”œβ”€ PATCH /enrollments/:id/progress ☐ Quiz endpoints β”œβ”€ POST /quizzes/:id/responses β”œβ”€ GET /quizzes/:id/results β”œβ”€ GET /quizzes/:id/certificate DELIVERABLES : β†’ REST API (20+ endpoints) β†’ Database schema docs β†’ Postman collection (for testing) ``` --- ### **SEMAINE 11-12 : INTEGRATION & FRONTEND-BACKEND** **Lead :** Tech Lead | **Γ‰quipe :** Frontend + Backend ``` SEMAINE 11 : API Integration ☐ Frontend HTTP client setup β”œβ”€ Axios / Fetch configuration β”œβ”€ Interceptors for auth tokens └─ Error handling ☐ Connect Frontend β†’ Backend β”œβ”€ Login flow (Frontend form β†’ API β†’ JWT token) β”œβ”€ Course listing (GET /courses β†’ React component) β”œβ”€ Enrollment (POST button β†’ API β†’ DB) β”œβ”€ Progress tracking SEMAINE 12 : E2E Testing & Bug Fixes ☐ Manual testing (QA team) β”œβ”€ Register β†’ Login β†’ Browse courses β†’ Enroll β†’ Take quiz β”œβ”€ Mobile testing (iOS + Android) └─ Cross-browser (Chrome, Firefox, Safari, Edge) ☐ Bug fixes & optimization β”œβ”€ Performance profiling (Chrome DevTools) β”œβ”€ Database query optimization (Indexes) └─ Frontend rendering optimization (React.memo, lazy loading) DELIVERABLES : β†’ Integrated MVP (Frontend + Backend) β†’ QA test report β†’ Performance benchmarks ``` --- ### **SEMAINE 13-14 : QUIZ & CERTIFICATION ENGINE** **Lead :** Backend Dev ``` SEMAINE 13 : Quiz Logic Implementation ☐ Quiz question types β”œβ”€ Multiple choice β”œβ”€ True/False β”œβ”€ Matching β”œβ”€ Fill-in-the-blank └─ Drag & drop (for H5P integration) ☐ Scoring algorithm β”œβ”€ Points per question β”œβ”€ Percentage calculation β”œβ”€ Pass/fail logic (β‰₯75% = pass) β”œβ”€ Immediate feedback system SEMAINE 14 : Certificate Generation ☐ Certificate template (PDF) β”œβ”€ Dynamic data (name, course, date, score) β”œβ”€ GLCA branding (logo, colors) β”œβ”€ QR code for verification └─ Blockchain metadata (optional) ☐ Certificate delivery β”œβ”€ Auto-generate on quiz pass β”œβ”€ Email delivery (SendGrid) β”œβ”€ Dashboard display β”œβ”€ LinkedIn sharing integration ☐ Badge system (Open Badges) β”œβ”€ Credly API integration β”œβ”€ Badge metadata └─ Issuer profile DELIVERABLES : β†’ Quiz engine (fully functional) β†’ Certificate PDF + generator code β†’ Badge system integrated ``` --- ### **SEMAINE 15-16 : TESTING, DEPLOY & LAUNCH PREP** **Lead :** Tech Lead ``` SEMAINE 15 : UAT (User Acceptance Testing) ☐ Internal testing team β”œβ”€ 5-10 beta users test full flow β”œβ”€ Collect feedback (Google Form) β”œβ”€ Report bugs in Jira └─ Document pain points ☐ Security audit β”œβ”€ OWASP top 10 review β”œβ”€ SQL injection tests β”œβ”€ XSS vulnerability scan └─ HTTPS verification SEMAINE 16 : Staging Deployment & Final Prep ☐ Deploy to staging environment β”œβ”€ All code on staging server β”œβ”€ Production-like data β”œβ”€ Full smoke testing └─ Performance verification ☐ Documentation & runbooks β”œβ”€ User guide (5 pages) β”œβ”€ Admin guide (10 pages) β”œβ”€ Emergency procedures └─ Support FAQ ☐ Marketing assets prep β”œβ”€ Press release draft β”œβ”€ Social media graphics β”œβ”€ Email campaign draft └─ Video teaser (30 sec) DELIVERABLES : β†’ Staging environment ready β†’ All documentation β†’ Go/No-go decision checklist ``` --- ## 🎬 PHASE 2 : CONTENU MVP (Semaines 5-16 | ParallΓ¨le) ### **SEMAINE 5-6 : MODULE 1 SCRIPT & DESIGN** **Lead :** PΓ©dagogue | **Γ‰quipe :** Writers, Designers ``` Module : "Crise Climatique Africaine" SEMAINE 5 : ☐ Detailed outline (4 chapters) β”œβ”€ Chapter 1.1 : Effet de serre (45 min) β”œβ”€ Chapter 1.2 : GES (50 min) β”œβ”€ Chapter 1.3 : Impacts Afrique (60 min) └─ Chapter 1.4 : Solutions (70 min) ☐ Video scripts (3 videos Γ— 10 min each) β”œβ”€ "Comment fonctionne l'effet de serre" (script 2 pages) β”œβ”€ "Impacts en Afrique Centrale" (script 2 pages) β”œβ”€ "TΓ©moignage : FermiΓ¨re RCA" (script 1 page) └─ All scripts in French + English translation ☐ Quiz design (20 questions total) β”œβ”€ Chapter 1.1 : 5 questions β”œβ”€ Chapter 1.2 : 5 questions β”œβ”€ Chapter 1.3 : 5 questions β”œβ”€ Chapter 1.4 : 5 questions └─ Question bank : Figma doc with image placeholders SEMAINE 6 : ☐ Infographics design (3x infographics) β”œβ”€ "Effet de serre - 5 Γ©tapes" β”œβ”€ "GES - comparaison impact" β”œβ”€ "DonnΓ©es RCA 2000-2026" └─ All in SVG (editable for animation) ☐ Case study research β”œβ”€ Data collection (Temperature, rainfall, crops) β”œβ”€ Interview script (Farmer testimony) └─ Visual assets sourcing (Photos, maps) DELIVERABLES : β†’ Complete scripts (ready for voice-over) β†’ Infographic designs (SVG) β†’ Quiz question bank β†’ Research documentation ``` --- ### **SEMAINE 7-10 : CONTENT PRODUCTION (Videos + Assets)** **Lead :** Production Manager ``` SEMAINE 7 : Storyboarding & Pre-production ☐ Storyboards for all 3 videos β”œβ”€ Frame-by-frame drawings (Procreate or similar) β”œβ”€ Timing notes β”œβ”€ Audio cues └─ Color palette notes ☐ Asset sourcing β”œβ”€ Stock footage (Unsplash, Pexels for images) β”œβ”€ Music tracks selection (8Digital, AudioJungle) β”œβ”€ Royalty verification └─ Local photography coordination SEMAINE 8 : Video Production ☐ Video 1.1 : "Effet de serre" (Animation) β”œβ”€ Adobe Animate / Blender script execution β”œβ”€ 10 min duration β”œβ”€ HD 1080p export └─ Rough cut ready ☐ Video 1.2 : "Impacts Afrique" (Documentary) β”œβ”€ Film shoot (if live footage) or use stock β”œβ”€ B-roll editing β”œβ”€ Graphics overlay └─ Rough cut ready SEMAINE 9 : Post-production ☐ Video color grading ☐ Sound design β”œβ”€ Voice-over recording (FR + EN) β”œβ”€ Audio mixing (dialogue, music, SFX) └─ Audio mastering ☐ Animation for infographics β”œβ”€ Animate SVG infographics (CSS/Lottie) β”œβ”€ Timing & transitions └─ Export for web SEMAINE 10 : Finalization & Encoding ☐ Subtitles creation β”œβ”€ French transcription β†’ SRT β”œβ”€ English transcription β†’ SRT β”œβ”€ Timing sync └─ ProEdit review ☐ Video encoding β”œβ”€ MP4 (H.264, 1920Γ—1080, 25fps) β”œβ”€ Multiple bitrate (2Mbps, 1Mbps, 500kbps) └─ HLS format for streaming DELIVERABLES : β†’ 3 finished videos (1080p + subtitles) β†’ Animated infographics (web-ready) β†’ Subtitle files (SRT format) ``` --- ### **SEMAINE 11-12 : CONTENT INTEGRATION & QA** **Lead :** Content Manager ``` SEMAINE 11 : Platform Integration ☐ Upload videos to Moodle/CDN β”œβ”€ Video player configuration β”œβ”€ Subtitles embedding β”œβ”€ Chapters setup (video segmentation) └─ Transcript upload ☐ Upload infographics β”œβ”€ SVG animation test β”œβ”€ Responsive sizing check └─ Mobile rendering test ☐ Quiz setup in H5P β”œβ”€ Question import β”œβ”€ Scoring configuration β”œβ”€ Feedback text └─ Timer setting (if applicable) SEMAINE 12 : Content Review & Revisions ☐ Pedagogical review β”œβ”€ Content expert feedback β”œβ”€ Accuracy check (data, facts) β”œβ”€ Language review (clarity, tone) └─ Cultural sensitivity review ☐ Revision implementation β”œβ”€ Update scripts & subtitles β”œβ”€ Re-export videos (if needed) β”œβ”€ Update infographics └─ Re-test quizzes DELIVERABLES : β†’ Module 1 fully integrated & tested β†’ Content review report β†’ Ready for pilot launch ``` --- ### **SEMAINE 13-16 : MODULES 2-3 (PARALLEL TRACKS)** ``` MODULE 2 & 3 PRODUCTION (Weeks 13-16) - Simplified timeline WEEK 13-14 : Scripts + Design β”œβ”€ Module 2 (Biodiversity) : Scripts ready β”œβ”€ Module 3 (Green Economy) : Designs ready └─ Both : Quiz questions documented WEEK 15-16 : Videos + Integration β”œβ”€ Module 2 : Videos produced & uploaded β”œβ”€ Module 3 : Videos produced & uploaded └─ Both : QA passed DELIVERABLES : β†’ Modules 2-3 partially ready (will continue week 17+) ``` --- ## πŸš€ PHASE 3 : ENRICHISSEMENT (Semaines 17-52 | 9 mois) ### **SEMAINE 17-20 : MODULES 4-5 PRODUCTION** ``` Module 4 : "Eau Propre & Assainissement" Module 5 : "Lutte contre la Pollution" WEEK 17-18 : Content Development β”œβ”€ Scripts finalized (all 4 videos) β”œβ”€ Infographics designed (6 total) β”œβ”€ Quiz questions ready (50 total) └─ Case studies researched WEEK 19-20 : Production β”œβ”€ Videos produced (8 videos, 45 min total) β”œβ”€ Infographics animated β”œβ”€ Subtitles created └─ Integration testing DELIVERABLES : β†’ All 5 modules content complete β†’ 145 min video content β†’ 100+ quiz questions ``` --- ### **SEMAINE 21-24 : COMMUNITY FEATURES** ``` Forum Setup ☐ Discourse installation (or Moodle forums) β”œβ”€ Category structure (by course) β”œβ”€ Moderation rules β”œβ”€ Badge system (Discourse badges) └─ Email notifications config FAQ System ☐ Create FAQ database β”œβ”€ 50+ common questions β”œβ”€ Answers by topic └─ Admin dashboard for updates Support Chat ☐ Chatbot setup (Rasa NLU or simple rule-based) β”œβ”€ Common questions answered β”œβ”€ Escalation to human support β”œβ”€ Multi-language (FR/EN) └─ Integration with ticketing system DELIVERABLES : β†’ Functional community platform β†’ Support channels operational ``` --- ### **SEMAINE 25-28 : GAMIFICATION & ENGAGEMENT** ``` Badges & Points System ☐ Open Badges integration β”œβ”€ Badge designs (5x badges) β”œβ”€ Credly API integration β”œβ”€ Trigger logic (course completion, quiz score, etc.) └─ User dashboard display Points System ☐ Points allocation β”œβ”€ Course enrollment : +10 points β”œβ”€ Lesson completion : +5 points each β”œβ”€ Quiz pass : +20 points β”œβ”€ Certificate : +50 points └─ Leaderboard (anonymous) Progress Visualization ☐ Dashboard enhancements β”œβ”€ Progress pie charts β”œβ”€ Streak counter (days active) β”œβ”€ Achievement unlocked notifications └─ Goals/milestones setup DELIVERABLES : β†’ Gamification engine fully operational β†’ User engagement metrics tracking ``` --- ### **SEMAINE 29-32 : ANALYTICS & REPORTING** ``` Instructor Analytics ☐ Course performance dashboard β”œβ”€ Enrollment count & trends β”œβ”€ Completion rate by module β”œβ”€ Average quiz scores β”œβ”€ Time spent per lesson └─ Engagement heatmap Student Analytics ☐ Personal learning analytics β”œβ”€ Progress tracking β”œβ”€ Time investment visualization β”œβ”€ Weak areas identification └─ Personalized recommendations Admin Reporting ☐ System-wide reports β”œβ”€ MAU (Monthly Active Users) β”œβ”€ DAU (Daily Active Users) β”œβ”€ Completion funnel β”œβ”€ Certificate issuance trends └─ Support ticket volume DELIVERABLES : β†’ Analytics dashboard (3 views : student/teacher/admin) β†’ Export functionality (CSV, PDF) ``` --- ### **SEMAINE 33-40 : EXPANSION & LOCALIZATION** ``` Language Expansion ☐ Add support for local languages β”œβ”€ Sango (Central African) β”œβ”€ Arabic (for Sahel regions) β”œβ”€ Swahili (for East Africa) └─ Professional translation & testing Regional Adaptation ☐ Customize content per region β”œβ”€ Local case studies β”œβ”€ Regional expert profiles β”œβ”€ Local job listings (Module 3) └─ Regional climate data Mobile App (Optional) ☐ React Native mobile app β”œβ”€ iOS + Android builds β”œβ”€ Offline capability β”œβ”€ Push notifications └─ App store deployment DELIVERABLES : β†’ Platform in 4-5 languages β†’ Regional customization complete β†’ (Optional) Mobile app live ``` --- ### **SEMAINE 41-52 : MARKETING & GROWTH** ``` Marketing Campaign (Week 41-44) β”œβ”€ Social media content (50+ posts) β”œβ”€ Email campaigns (10 sequences) β”œβ”€ Influencer partnerships (5-10 influencers) β”œβ”€ Press release distribution └─ Community partnerships Partnerships & Integrations (Week 45-48) β”œβ”€ University partnerships β”œβ”€ NGO integrations β”œβ”€ Government outreach β”œβ”€ Corporate training contracts └─ YouTube channel optimization Growth Hacking (Week 49-52) β”œβ”€ Referral program β”œβ”€ Scholarship program β”œβ”€ Ambassador program β”œβ”€ Community challenges └─ Viral campaigns DELIVERABLES : β†’ 10,000+ signed up users β†’ 3,000+ active learners β†’ 1,000+ certificates issued ``` --- ## πŸ“Š PHASE 4 : SCALE & OPTIMIZATION (Weeks 53-72 | 5 months) ### **SEMAINE 53-56 : ADVANCED FEATURES** ``` Webinar Integration ☐ Zoom/BigBlueButton integration β”œβ”€ Live session scheduling β”œβ”€ Recording storage β”œβ”€ Q&A feature └─ Participant engagement tracking Personalization Engine ☐ ML-based recommendations β”œβ”€ Course recommendations β”œβ”€ Content suggestions β”œβ”€ Learning path optimization └─ Difficulty adaptation AI-powered Features ☐ Automated grading (for essays) ☐ Chatbot tutoring ☐ Plagiarism detection ☐ Content generation assistance DELIVERABLES : β†’ Advanced platform capabilities β†’ Enhanced learning experience ``` --- ### **SEMAINE 57-60 : CERTIFICATION PARTNERSHIPS** ``` Industry Certifications ☐ Partner with organizations β”œβ”€ Green Jobs certifications β”œβ”€ UN Sustainable Development Goals alignment β”œβ”€ Government recognition (if applicable) └─ International credentials Blockchain Certificates ☐ Optional : Ethereum-based certificates β”œβ”€ Permanent record β”œβ”€ Shareable on LinkedIn β”œβ”€ Employer verification └─ NFT certificates (creative option) Employer Directory ☐ Green job marketplace integration β”œβ”€ Job postings β”œβ”€ Matching algorithm β”œβ”€ Resume building └─ Interview prep resources DELIVERABLES : β†’ Recognized certifications β†’ Enhanced career prospects for learners ``` --- ### **SEMAINE 61-72 : SUSTAINABILITY & GROWTH** ``` Sustainability Model ☐ Revenue generation strategy β”œβ”€ Premium courses (+$5-20/course) β”œβ”€ Corporate training packages β”œβ”€ Government contracts β”œβ”€ Foundation funding (ongoing) └─ Affiliate partnerships Operations & Support ☐ 24/7 support team β”œβ”€ Email support (24h response) β”œβ”€ Chat support (business hours) β”œβ”€ Community moderation (5-10 moderators) └─ Trainer onboarding program Growth Targets (Year 2) β”œβ”€ 50,000+ users β”œβ”€ 15,000+ certificates issued β”œβ”€ 10+ additional courses β”œβ”€ 5 regional partnerships └─ Break-even on operations DELIVERABLES : β†’ Sustainable platform (self-funding) β†’ Year 2 roadmap finalized ``` --- ## πŸ“ˆ MILESTONES & KPIs TRACKING ### **Quarterly Milestones** ``` Q2 2026 (Weeks 1-13) βœ… MVP launched (3 modules) βœ… 100+ initial users βœ… Infrastructure stable Q3 2026 (Weeks 14-26) βœ… All 5 modules complete βœ… Community features live βœ… 1,000+ users Q4 2026 (Weeks 27-39) βœ… Gamification working βœ… 3,000+ users βœ… 500+ certificates issued Q1 2027 (Weeks 40-52) βœ… 10,000+ users βœ… Multi-language support βœ… Partnerships established Q2-Q3 2027 (Weeks 53-72) βœ… Advanced features ready βœ… 50,000+ users βœ… Financial sustainability ``` --- ### **Key Performance Indicators (KPIs)** ``` ENGAGEMENT KPIs β”œβ”€ Daily Active Users (DAU) : Target 20% of registered users β”œβ”€ Weekly Active Users (WAU) : Target 40% of registered users β”œβ”€ Course Completion Rate : Target 45%+ β”œβ”€ Quiz Pass Rate : Target 70%+ β”œβ”€ Avg. Session Duration : Target 25+ minutes └─ Return Rate (7-day) : Target 35% LEARNING KPIs β”œβ”€ Certificate Issuance Rate : Target 1 cert per 3 enrollments β”œβ”€ Quiz Average Score : Target 78%+ β”œβ”€ Time-to-Completion : Target 5-7 hours per course β”œβ”€ Content Satisfaction : Target 4.2+/5.0 stars └─ Post-course Impact : Target 30% job-related improvement BUSINESS KPIs β”œβ”€ User Acquisition Cost (UAC) : Target <$2 per user β”œβ”€ Monthly Recurring Revenue (MRR) : Target $5,000+ by Q4 2027 β”œβ”€ Retention Rate (30-day) : Target 50%+ β”œβ”€ Referral Rate : Target 5% new users from referrals └─ Support Response Time : Target <24 hours ``` --- ## πŸ’° PHASE-BY-PHASE BUDGET ``` PHASE 1 : Infrastructure & MVP (Weeks 1-16) β”œβ”€ Dev team salaries (4 months Γ— 4 people) : $16,000 β”œβ”€ Infrastructure (AWS, domains, etc.) : $2,000 β”œβ”€ Tools (Figma, Jira, Slack) : $500 └─ SUBTOTAL PHASE 1 : $18,500 PHASE 2 : Content MVP (Weeks 5-16) β”œβ”€ Scriptwriting & design : $2,000 β”œβ”€ Video production : $6,500 β”œβ”€ Infographics & animation : $1,500 β”œβ”€ Voice-over & subtitling : $1,000 └─ SUBTOTAL PHASE 2 : $11,000 PHASE 3 : Enrichment (Weeks 17-52) β”œβ”€ Content creation (Modules 4-5) : $8,000 β”œβ”€ Community & support systems : $3,000 β”œβ”€ Gamification & analytics : $2,500 β”œβ”€ Marketing & partnerships : $4,000 β”œβ”€ Operations team (9 months) : $18,000 └─ SUBTOTAL PHASE 3 : $35,500 PHASE 4 : Scale & Optimization (Weeks 53-72) β”œβ”€ Advanced features development : $5,000 β”œβ”€ Platform optimization & scaling : $3,000 β”œβ”€ Partnerships & integrations : $2,000 β”œβ”€ Marketing & growth hacking : $5,000 └─ SUBTOTAL PHASE 4 : $15,000 GRAND TOTAL (18 MONTHS) : $80,000 AVERAGE MONTHLY : $4,444 ``` --- ## βœ… MASTER CHECKLIST ``` PRE-LAUNCH (End of Week 16) ☐ MVP fully deployed to production ☐ 3 modules with content complete ☐ Quiz & certification working ☐ All tests passing (>90% coverage) ☐ Documentation complete ☐ Support team trained PHASE 2 MILESTONES (Week 26) ☐ 5 modules complete & live ☐ Community features operational ☐ 1,000+ users enrolled ☐ 100+ certificates issued ☐ Analytics dashboard live PHASE 3 MILESTONES (Week 52) ☐ Gamification active ☐ 10,000+ users ☐ 3 language support ☐ Partnerships signed ☐ Marketing campaigns running PHASE 4 MILESTONES (Week 72) ☐ 50,000+ users ☐ Platform self-sustaining (revenue > costs) ☐ Advanced features live ☐ Year 2 roadmap approved ``` --- **Calendar prepared by :** Project Management **Last updated :** June 2026 **Review frequency :** Bi-weekly