mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 04:54:18 +00:00
18 lines
511 B
Python
18 lines
511 B
Python
from nest_backend.database import *
|
|
from nest_backend.app import app
|
|
from .repo_search import search_repo_conditions
|
|
from .alert_trigger import is_repo_alert_triggered
|
|
|
|
ext.init_app(app=app)
|
|
|
|
|
|
def search_all_repo():
|
|
active_repos = Repository.query.filter_by(is_active=True)
|
|
for repo_id in [active_repo.id for active_repo in active_repos]:
|
|
search_repo_conditions(repo_id)
|
|
is_repo_alert_triggered(repo_id)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
with app.app_context():
|
|
search_all_repo()
|