This repository contains the frontend (React + TailwindCSS) and the backend (FastAPI) for the Athena Paths project. The backend uses CSV files as its data source.
To run the frontend (from root):
cd client
npm install
npm startThe development server will start at:
http://localhost:3000Install dependencies (from root):
cd backend
pip install -r requirements.txtRun backend server (from root):
cd backend
python -m uvicorn main:app --reloadThe API server will start at:
http://localhost:8000