mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
9e825811f2
* initial event search api implementation * fix lint * fix tests * move chromadb imports and pysqlite hotswap to fix tests * remove unused import * switch default limit to 50 * fix events accidently pulling inside chroma results loop
18 lines
290 B
Python
18 lines
290 B
Python
import faulthandler
|
|
import threading
|
|
|
|
from flask import cli
|
|
|
|
from frigate.app import FrigateApp
|
|
|
|
faulthandler.enable()
|
|
|
|
threading.current_thread().name = "frigate"
|
|
|
|
cli.show_server_banner = lambda *x: None
|
|
|
|
if __name__ == "__main__":
|
|
frigate_app = FrigateApp()
|
|
|
|
frigate_app.start()
|