# 1. Navigate to the project
cd ~/Workspace/omni-dromenon-machina
# 2. Make startup script executable
chmod +x START_LOCAL_IPHONE.sh
# 3. Run it
./START_LOCAL_IPHONE.sh
Script will:
http://192.168.1.100Done! Now you can:
When you see “Docker services running”, you have:
| Service | URL | Purpose |
|---|---|---|
| Website | http://IP |
Landing page + showcase |
| API | http://IP:3000 |
Core Engine API |
| Frontend | http://IP:3001 |
Performance interface |
| Redis | localhost:6379 |
Cache (internal) |
cd ~/Workspace/omni-dromenon-machina
./START_LOCAL_IPHONE.sh
Open Safari → Visit http://YOUR-IP
Press Ctrl+C in Terminal
cd ~/Workspace/omni-dromenon-machina
docker-compose logs -f
ifconfig | grep "inet " | grep -v 127.0.0.1
# Look for: 192.168.x.x or 10.x.x.x
# Kill any old containers
docker-compose down -v
# Restart
./START_LOCAL_IPHONE.sh
http://192.168.1.100 (not http://localhost)Edit START_LOCAL_IPHONE.sh to print QR code:
# Install qrencode: brew install qrencode
echo "$LOCAL_IP" | qrencode -t ANSIUTF8
"Visit http://192.168.1.100 on WiFi with password: [your-wifi-password]" <!-- allow-secret -->
# From iPhone/iPad on same WiFi:
curl http://YOUR-MAC-IP/health
Leave Terminal with START_LOCAL_IPHONE.sh running. Close it to stop services.
Open second Terminal:
cd ~/Workspace/omni-dromenon-machina
docker-compose logs -f core-engine
http://YOUR-IP:3000/health{"status":"healthy"}That’s it! You’re now running Omni-Dromenon-Machina locally with iPhone access. 🚀