[30388f42] Infrastructure Hardening: Repaired CE/Connector DB schema, fixed frontend styling build, implemented robust echo shield in worker v2.1.1, and integrated Lead Engine into gateway.
This commit is contained in:
12
ARCHIVE_legacy_scripts/check_syntax.py
Normal file
12
ARCHIVE_legacy_scripts/check_syntax.py
Normal file
@@ -0,0 +1,12 @@
|
||||
import py_compile
|
||||
import sys
|
||||
|
||||
try:
|
||||
py_compile.compile('/app/competitor-analysis-app/competitor_analysis_orchestrator.py', doraise=True)
|
||||
print("Syntax OK")
|
||||
except py_compile.PyCompileError as e:
|
||||
print(f"Syntax Error: {e}")
|
||||
sys.exit(1)
|
||||
except Exception as e:
|
||||
print(f"General Error: {e}")
|
||||
sys.exit(1)
|
||||
Reference in New Issue
Block a user