Recovered state: integrated TrendSurferAgent, restored frontend/backend files, and cleaned up recovery scripts

This commit is contained in:
ajaysi
2026-02-08 13:56:57 +05:30
parent 1db10ccd0f
commit e404a86502
333 changed files with 42223 additions and 10875 deletions

View File

@@ -188,7 +188,9 @@ def start_backend(enable_reload=False, production_mode=False):
host=host,
port=port,
reload=reload,
reload_dirs=["."], # Strictly watch backend directory only
reload_excludes=[
"workspace/**/*",
"*.pyc",
"*.pyo",
"*.pyd",
@@ -206,20 +208,18 @@ def start_backend(enable_reload=False, production_mode=False):
"*.yaml",
"*.yml",
".env*",
"logs/*",
"cache/*",
"tmp/*",
"temp/*",
"logs/**/*",
"logs",
"**/*.jsonl",
"**/*.log",
"cache/**/*",
"tmp/**/*",
"temp/**/*",
"middleware/*",
"models/*",
"scripts/*",
"alwrity_utils/*"
],
reload_includes=[
"app.py",
"api/**/*.py",
"services/**/*.py"
],
log_level=uvicorn_log_level
)