-
Navigate to backend and create virtual environment:
cd Backend python -m venv venv source venv/bin/activate # Windows: venv\Scripts\activate
-
Install dependencies:
pip install -r requirements.txt
-
Configure environment:
cp .env.example .env # Edit .env with your MongoDB connection string and other settings -
Start the server:
python main.py
Server runs at:
http://localhost:8000API Documentation:http://localhost:8000/docs
-
Install dependencies:
npm install
-
Start the development server:
npm start
-
Run on specific platforms:
npm run android # Android emulator npm run ios # iOS simulator npm run web # Web browser
- Node.js 18+
- Python 3.8+
- MongoDB (local or cloud instance)