Full sync - all projects, memory, configs

This commit is contained in:
2026-03-21 20:27:59 -05:00
parent 2447677d4a
commit b33de10902
395 changed files with 1635300 additions and 459211 deletions

View File

@ -0,0 +1,18 @@
#!/usr/bin/env python3
"""Simple HTTP server for the CoinEx Futures Scanner dashboard."""
import http.server
import os
import socketserver
PORT = 8891
DIR = os.path.dirname(os.path.abspath(__file__))
class Handler(http.server.SimpleHTTPRequestHandler):
def __init__(self, *args, **kwargs):
super().__init__(*args, directory=DIR, **kwargs)
def log_message(self, format, *args):
pass # Quiet
with socketserver.TCPServer(("", PORT), Handler) as httpd:
print(f"CoinEx Scanner dashboard at http://localhost:{PORT}")
httpd.serve_forever()