chg: Add background ingester to the start script

pull/184/head
Raphaël Vinot 2021-03-18 01:00:27 +01:00
parent 5ae927591d
commit 648d4d5b5b
1 changed files with 3 additions and 0 deletions

View File

@ -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.')