"""Simple web server for Phi Fractal dashboard"""
import http.server
import socketserver
import os

os.chdir('/Eden/CORE/phi_fractal')

PORT = 8090  # Different port

Handler = http.server.SimpleHTTPRequestHandler

print(f"🌐 Dashboard available at: http://localhost:{PORT}/phi_fractal_dashboard.html")
print("Press Ctrl+C to stop")

with socketserver.TCPServer(("", PORT), Handler) as httpd:
    httpd.serve_forever()
