This repository contains the web experience for The Aggie Map - Aggieland's One Stop Shop. It is structured as a monorepo with a Next.js frontend and a FastAPI backend scaffold.
frontend/- Next.js 14 App Router project (Material UI, Clerk auth, mock API layer).backend/- FastAPI service returning placeholder data for future integration.
- Install frontend dependencies:
cd frontend npm install npm run dev - (Optional) Run the backend mock service:
cd backend python -m venv .venv .\.venv\Scripts\activate # Windows pip install -r requirements.txt uvicorn main:app --reload --port 8000
Environment variable examples live in frontend/.env.local.example and backend/.env.example.