origin:comment,yyets

separate comment to higher level

update fe and dockerfile
This commit is contained in:
BennyThink
2021-10-30 14:44:28 +08:00
parent 120c797acb
commit 10eab46dad
6 changed files with 58 additions and 136 deletions

View File

@@ -100,7 +100,7 @@ if __name__ == "__main__":
scheduler = BackgroundScheduler(timezone=timez)
scheduler.add_job(OtherMongoResource().reset_top, 'cron', hour=0, minute=0, day=1)
scheduler.add_job(sync_douban, 'cron', hour=0, minute=0, day=1)
# scheduler.add_job(ResourceLatestMongoResource().refresh_latest_resource, 'cron', hour=1)
scheduler.add_job(ResourceLatestMongoResource().refresh_latest_resource, 'cron', hour=1)
scheduler.start()
options.define("p", default=8888, help="running port", type=int)
options.define("h", default='127.0.0.1', help="listen address", type=str)