Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 668 Bytes

README.md

File metadata and controls

36 lines (29 loc) · 668 Bytes

CSCS2034 Wordle Project

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.

Tech

  • Languages: Python, TypeScript
  • Frameworks: Flask, React
  • Build Tool: Vite
  • Styling: Tailwind CSS
  • Hosting: Fly.io (backend), Vercel (frontend)

Running extension task

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