This repository is a monorepo containing two projects:
- Python Agent: A backend project managed using Poetry.
- React Native App: A mobile application developed with Expo for React Native.
The Python agent project was created using Poetry.
Setup Instructions:
- Navigate to the
python-agentdirectory. - Install dependencies with:
poetry install
- Run the agent (assuming your main file is located at
agent/main.py):poetry run python agent/main.py
The React Native app was created using Expo.
Setup Instructions:
- Navigate to the
react-native-appdirectory. - Install dependencies:
or if you are using Yarn:
npm install
yarn install
- Start the development server:
expo start
This monorepo leverages Poetry and Expo to manage the Python backend and the React Native frontend respectively.
Use this README as a guide for setting up and developing your mobile learning application.