NZEBI-APP (backend + mobile)
===========================
Structure:
- backend/: simple Express backend serving lessons data (backend/data/lessons.json)
- mobile/: Expo React Native app
How to run (local)
------------------
1) Backend:
cd backend
npm install
npm start
# backend runs on
localhost
2) Mobile (Expo):
cd mobile
npm install
expo start
# run on emulator or physical device
Notes:
- A copy of your PDF has been included in mobile/assets/dico-nzebi.pdf if it was present.
- lessons.json includes audio placeholders under each entry (assets/audio/*.mp3).
- To add audio, place files into mobile/assets/audio/ with the matching filenames.
- The backend includes an endpoint /api/assets/dico to download the PDF (if backend and mobile are in same parent folder).
- This is a starter template. For production you should:
* replace the in-memory user store by a real DB
* secure API endpoints, add authentication
* implement proper audio storage & CDN
* add unit & e2e tests