Initial Commit

This commit is contained in:
2026-02-13 12:26:33 -05:00
parent 7b9c52900c
commit 82f2d877ff
7662 changed files with 1356583 additions and 1 deletions

17
run.py Normal file
View File

@@ -0,0 +1,17 @@
#!/usr/bin/env python3
import logging
import sys
# Configure logging before importing any other modules
logging.basicConfig(
level=logging.DEBUG,
format='%(asctime)s.%(msecs)03d - %(levelname)s:%(name)s:%(message)s',
datefmt='%Y-%m-%d %H:%M:%S',
stream=sys.stdout # Explicitly set to stdout
)
# Now import the display controller
from src.display_controller import main
if __name__ == "__main__":
main()