48 lines
955 B
Markdown
48 lines
955 B
Markdown
# 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:
|
|
|
|
```bash
|
|
# Find and kill processes
|
|
pkill -f "next dev"
|
|
pkill -f "tsx watch"
|
|
pkill -f "turbo"
|
|
```
|
|
|
|
### Restart servers
|
|
```bash
|
|
pnpm run dev
|
|
```
|
|
|
|
### View logs
|
|
Check the terminal where `pnpm dev` is running for real-time logs.
|
|
|
|
## Troubleshooting
|
|
|
|
If servers don't start:
|
|
1. Check ports are not in use: `lsof -i :3000`
|
|
2. Check environment variables are set correctly
|
|
3. Check dependencies are installed: `pnpm install`
|
|
4. Check for errors in the terminal output
|
|
|