Add new startup script
This commit is contained in:
12
startup.py
Normal file
12
startup.py
Normal file
@@ -0,0 +1,12 @@
|
||||
import app # noqa: F401 # here to init the backend
|
||||
from core.activitypub import _actor_hash
|
||||
from core.shared import MY_PERSON
|
||||
from core.shared import p
|
||||
from core.tasks import Tasks
|
||||
from utils.local_actor_cache import is_actor_updated
|
||||
|
||||
h = _actor_hash(MY_PERSON, local=True)
|
||||
if is_actor_updated(h):
|
||||
Tasks.send_actor_update()
|
||||
|
||||
p.push({}, "/task/cleanup", schedule="@every 1h")
|
Reference in New Issue
Block a user