AI-powered mathematics platform for students.
Mathex/
├── Backend/
│ ├── main.py
│ ├── engine.py
│ ├── qngen.py
│ ├── formula.py
│ ├── bar_chart.py
│ ├── pie_chart.py
│ ├── quotes.py
│ ├── quotes.json
│ └── .env
│
├── public/
│ ├── index.html
│ ├── 404.html
│ ├── css/
│ ├── js/
│ ├── assets/
│ └── vercel.json
│
└── requirements.txt
- Clone the repository
git clone https://github.com/prasoonkandel/Mathex.git
cd Mathex- Install dependencies
pip install -r requirements.txt- Configure environment
cd Backend
echo "GEMINI_API_KEY=your_api_key_here" > .env- Run backend
python main.py- Run frontend (new terminal)
cd public
python -m http.server 8000- Open browser at http://localhost:8000