Add print saying where the data is stored, add 2 TODOs, and add stuff to Uvicorn
This commit is contained in:
@ -758,9 +758,11 @@ def startup() -> None:
|
|||||||
scheduler: BackgroundScheduler = BackgroundScheduler()
|
scheduler: BackgroundScheduler = BackgroundScheduler()
|
||||||
|
|
||||||
# Update all feeds every 15 minutes.
|
# Update all feeds every 15 minutes.
|
||||||
|
# TODO: Make this configurable.
|
||||||
scheduler.add_job(send_to_discord, "interval", minutes=15, next_run_time=datetime.now())
|
scheduler.add_job(send_to_discord, "interval", minutes=15, next_run_time=datetime.now())
|
||||||
scheduler.start()
|
scheduler.start()
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
uvicorn.run("main:app", log_level="debug", reload=True)
|
# TODO: Make this configurable.
|
||||||
|
uvicorn.run("main:app", log_level="info", host="0.0.0.0", port=5000, proxy_headers=True, forwarded_allow_ips="*")
|
||||||
|
@ -6,6 +6,8 @@ from reader import Entry, Reader, TagNotFoundError, make_reader # type: ignore
|
|||||||
|
|
||||||
data_dir: str = user_data_dir(appname="discord_rss_bot", appauthor="TheLovinator", roaming=True)
|
data_dir: str = user_data_dir(appname="discord_rss_bot", appauthor="TheLovinator", roaming=True)
|
||||||
os.makedirs(data_dir, exist_ok=True)
|
os.makedirs(data_dir, exist_ok=True)
|
||||||
|
print(f"Data is stored in '{data_dir}'.")
|
||||||
|
|
||||||
|
|
||||||
# TODO: Add default things to the database and make the edible.
|
# TODO: Add default things to the database and make the edible.
|
||||||
default_custom_message: str = "{{entry_title}}\n{{entry_link}}"
|
default_custom_message: str = "{{entry_title}}\n{{entry_link}}"
|
||||||
|
Reference in New Issue
Block a user