Files
solace-bg-dubai/DEV_SERVERS_STATUS.md
defiQUG c94eb595f8
Some checks failed
CI / lint-and-test (push) Has been cancelled
Initial commit: add .gitignore and README
2026-02-09 21:51:53 -08:00

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