blakeblackshear.frigate/frigate/__main__.py

29 lines
487 B
Python
Raw Normal View History

2021-02-17 14:23:32 +01:00
import faulthandler
import logging
import threading
from flask import cli
2021-02-17 14:23:32 +01:00
from frigate.app import FrigateApp
2020-11-04 13:31:25 +01:00
def main() -> None:
faulthandler.enable()
2020-11-01 15:06:15 +01:00
# Clear all existing handlers.
logging.basicConfig(
level=logging.INFO,
handlers=[],
force=True,
)
2020-11-04 04:26:39 +01:00
threading.current_thread().name = "frigate"
cli.show_server_banner = lambda *x: None
# Run the main application.
FrigateApp().start()
2020-11-01 16:56:33 +01:00
if __name__ == "__main__":
main()