955 B
955 B
Development Servers Status
✅ Servers Running
Frontend (Next.js)
- Status: ✅ Running
- URL: http://localhost:3000
- Process: Next.js dev server
- Port: 3000
Backend
- Status: Starting (check logs)
- Port: Varies based on configuration
Access Points
- Frontend Dashboard: http://localhost:3000
- API Routes: http://localhost:3000/api/* (if configured)
Commands
Stop servers
Press Ctrl+C in the terminal running pnpm dev, or:
# Find and kill processes
pkill -f "next dev"
pkill -f "tsx watch"
pkill -f "turbo"
Restart servers
pnpm run dev
View logs
Check the terminal where pnpm dev is running for real-time logs.
Troubleshooting
If servers don't start:
- Check ports are not in use:
lsof -i :3000 - Check environment variables are set correctly
- Check dependencies are installed:
pnpm install - Check for errors in the terminal output