You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Start development server (with live reload)
npm run dev
# Start production server (no reload)
npm start
# Install dependencies
npm install
# Build (verification only for Python)
npm run build
# Copy program folder to repositories
cp -r "MyApp""C:\Users\nedpe\Desktop\Repositories\"# Restart controller to auto-discover
Method 2: ZIP File
# Drop ZIP on Desktop# File watcher automatically extracts and imports
Method 3: API Import
# Use the Import page in dashboard# Or POST to /api/import/bundle
🎮 Service Control
Via Dashboard
Click "Launch" button to open in browser
Click "Start" to start the service
Click "Stop" to stop the service
Click "Restart" to restart the service
Via API
# Start service
curl -X POST http://localhost:5010/api/services/{id}/start
# Stop service
curl -X POST http://localhost:5010/api/services/{id}/stop
# Restart service
curl -X POST http://localhost:5010/api/services/{id}/restart
# Get service details
curl http://localhost:5010/api/services/{id}
🔍 Troubleshooting
Server Won't Start
# Check if port is in use
netstat -ano | findstr :5010# Check Python installed
python --version
# Reinstall dependencies
pip install -r requirements.txt
Changes Not Showing
# 1. Verify reload enabled
LOCAL_NEXUS_RELOAD=true
# 2. Hard refresh browser
Ctrl + Shift + R
# 3. Check terminal for errors# Look for syntax errors or exceptions
Service Won't Start
# Check service details in dashboard# Verify start_command is correct# Check working_directory exists# Review logs in service detail page