From 648d4d5b5b022e600869734926d0304eeb231bd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Thu, 18 Mar 2021 01:00:27 +0100 Subject: [PATCH] chg: Add background ingester to the start script --- bin/start.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/start.py b/bin/start.py index 72690919..b4e37982 100755 --- a/bin/start.py +++ b/bin/start.py @@ -15,6 +15,9 @@ def main(): print('Start asynchronous ingestor...') Popen(['async_capture']) print('done.') + print('Start background indexer...') + Popen(['background_indexer']) + print('done.') print('Start website...') Popen(['start_website']) print('done.')