Just_UNIARC / scripts /force_refresh.py
UNI12345's picture
feat: sync backend codebase to space
feeaf83
Raw
History Blame Contribute Delete
385 Bytes
import asyncio
import logging
from src.scheduler.task_scheduler import run_news_cycle
logging.basicConfig(level=logging.INFO)
async def force_kickstart():
print("πŸš€ Manually Force-Triggering News Intelligence Cycle...")
await run_news_cycle()
print("βœ… Cycle Complete. Fresh news committed to database.")
if __name__ == "__main__":
asyncio.run(force_kickstart())