A comprehensive web application for Developer Relations resources and visualizations.
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
cd frontend
npm install
echo "NEXT_PUBLIC_API_URL=http://localhost:8000" > .env
npm run dev
Access the application at:
- Frontend: http://localhost:3000
- Backend API: http://localhost:8000