You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
446 B
17 lines
446 B
from myutils.ConfigManager import myCongif
|
|
from myutils.MyLogger_logger import LogHandler
|
|
from core.ViewManager import mVManager
|
|
from web import create_app
|
|
import os
|
|
|
|
|
|
#print(f"Current working directory (run.py): {os.getcwd()}")
|
|
web = create_app()
|
|
|
|
if __name__ == '__main__':
|
|
# logger = LogHandler().get_logger("main")
|
|
# logger.debug("debug")
|
|
# logger.info("info")
|
|
mVManager.start_check_rtsp()
|
|
web.run(debug=True,port=5001)
|
|
|
|
|