Created for CSC2034 Science of programming module. A wordle game in Jupyter notebook later converted into a Flask backend and React frontend as an extension task. Live demo can be found here.
- Languages: Python, TypeScript
- Frameworks: Flask, React
- Build Tool: Vite
- Styling: Tailwind CSS
- Hosting: Fly.io (backend), Vercel (frontend)
Run the flask backend:
cd extension/backend
pip install -r requirements.txt
flask run
Run the react frontend:
cd extension/frontend
npm install
npm run dev