This is a Fintech application built with a React Native frontend and a Node.js backend. It integrates features like user authentication, money transfer, bill payments, and card management.
- backend/: Node.js with Express and MongoDB for the backend API.
- frontend/: React Native app with Redux for state management.
PORT=5000
DB_CONNECTION=mongodb://localhost:27017/aenzbiFintechDB
JWT_SECRET=your_jwt_secret
STRIPE_SECRET_KEY=your_stripe_secret_key
-
Install Node.js dependencies:
cd backend npm install
-
Install React Native dependencies:
cd frontend/aenzbiFintech npm install
-
Run the backend:
cd backend npm start
-
Run the frontend:
cd frontend/aenzbiFintech npx react-native run-android # For Android npx react-native run-ios # For iOS