mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
cafe0917c7
* __main__.py * app.py * models.py * plus.py * stats.py In addition a new module was introduced: types There all TypedDicts are included. Bitte geben Sie eine Commit-Beschreibung für Ihre Änderungen ein. Zeilen,
17 lines
289 B
Python
17 lines
289 B
Python
import faulthandler
|
|
from flask import cli
|
|
|
|
faulthandler.enable()
|
|
import threading
|
|
|
|
threading.current_thread().name = "frigate"
|
|
|
|
from frigate.app import FrigateApp
|
|
|
|
cli.show_server_banner = lambda *x: None
|
|
|
|
if __name__ == "__main__":
|
|
frigate_app = FrigateApp()
|
|
|
|
frigate_app.start()
|