DevRel Resources Web Application

A comprehensive web application for Developer Relations resources and visualizations.

Setup Instructions

Backend Setup

cd backend
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
uvicorn app.main:app --reload --host 0.0.0.0 --port 8000

Frontend Setup

cd frontend
npm install
echo "NEXT_PUBLIC_API_URL=http://localhost:8000" > .env
npm run dev

Access the application at: