2019-01-29 18:37:13 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2020-10-22 16:41:00 +02:00
|
|
|
from subprocess import run, Popen
|
2019-01-29 18:37:13 +01:00
|
|
|
from lookyloo.helpers import get_homedir
|
|
|
|
|
2020-10-03 21:19:43 +02:00
|
|
|
|
|
|
|
def main():
|
2019-01-29 18:37:13 +01:00
|
|
|
# Just fail if the env isn't set.
|
|
|
|
get_homedir()
|
2020-10-22 16:41:00 +02:00
|
|
|
print('Start backend (redis)...')
|
|
|
|
p = run(['run_backend', '--start'])
|
|
|
|
p.check_returncode()
|
|
|
|
print('done.')
|
|
|
|
print('Start asynchronous ingestor...')
|
2020-11-05 14:14:33 +01:00
|
|
|
Popen(['async_capture'])
|
2020-10-22 16:41:00 +02:00
|
|
|
print('done.')
|
|
|
|
print('Start website...')
|
2020-10-03 21:19:43 +02:00
|
|
|
Popen(['start_website'])
|
2020-10-22 16:41:00 +02:00
|
|
|
print('done.')
|
2020-10-03 21:19:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|