diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..522b536 --- /dev/null +++ b/.gitignore @@ -0,0 +1,151 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 +db.sqlite3-journal + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Project specific +logs/ +*.log +temp/ +tmp/ \ No newline at end of file diff --git a/app/__pycache__/__init__.cpython-310.pyc b/app/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index bebd1f0..0000000 Binary files a/app/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/app/core/__pycache__/__init__.cpython-310.pyc b/app/core/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 2b46f47..0000000 Binary files a/app/core/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/app/core/adb/__pycache__/__init__.cpython-310.pyc b/app/core/adb/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 0c07638..0000000 Binary files a/app/core/adb/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/app/core/adb/__pycache__/connection.cpython-310.pyc b/app/core/adb/__pycache__/connection.cpython-310.pyc deleted file mode 100644 index f09fe02..0000000 Binary files a/app/core/adb/__pycache__/connection.cpython-310.pyc and /dev/null differ diff --git a/app/core/app/__pycache__/__init__.cpython-310.pyc b/app/core/app/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index e46d5ac..0000000 Binary files a/app/core/app/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/app/core/app/__pycache__/factory.cpython-310.pyc b/app/core/app/__pycache__/factory.cpython-310.pyc deleted file mode 100644 index ace4179..0000000 Binary files a/app/core/app/__pycache__/factory.cpython-310.pyc and /dev/null differ diff --git a/app/core/app/__pycache__/router.cpython-310.pyc b/app/core/app/__pycache__/router.cpython-310.pyc deleted file mode 100644 index 5bb6dae..0000000 Binary files a/app/core/app/__pycache__/router.cpython-310.pyc and /dev/null differ diff --git a/app/core/config/__pycache__/__init__.cpython-310.pyc b/app/core/config/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 7a574be..0000000 Binary files a/app/core/config/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/app/core/config/__pycache__/cors.cpython-310.pyc b/app/core/config/__pycache__/cors.cpython-310.pyc deleted file mode 100644 index f4c9c6c..0000000 Binary files a/app/core/config/__pycache__/cors.cpython-310.pyc and /dev/null differ diff --git a/app/core/config/__pycache__/settings.cpython-310.pyc b/app/core/config/__pycache__/settings.cpython-310.pyc deleted file mode 100644 index 5b7ef6d..0000000 Binary files a/app/core/config/__pycache__/settings.cpython-310.pyc and /dev/null differ diff --git a/app/core/device/__pycache__/__init__.cpython-310.pyc b/app/core/device/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 7332fbc..0000000 Binary files a/app/core/device/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/app/core/device/__pycache__/dispatcher.cpython-310.pyc b/app/core/device/__pycache__/dispatcher.cpython-310.pyc deleted file mode 100644 index 1def697..0000000 Binary files a/app/core/device/__pycache__/dispatcher.cpython-310.pyc and /dev/null differ diff --git a/app/core/device/__pycache__/manager.cpython-310.pyc b/app/core/device/__pycache__/manager.cpython-310.pyc deleted file mode 100644 index 8b69a7f..0000000 Binary files a/app/core/device/__pycache__/manager.cpython-310.pyc and /dev/null differ diff --git a/app/core/exceptions/__pycache__/__init__.cpython-310.pyc b/app/core/exceptions/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 1ffa260..0000000 Binary files a/app/core/exceptions/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/app/core/exceptions/__pycache__/adb.cpython-310.pyc b/app/core/exceptions/__pycache__/adb.cpython-310.pyc deleted file mode 100644 index 24810b7..0000000 Binary files a/app/core/exceptions/__pycache__/adb.cpython-310.pyc and /dev/null differ diff --git a/app/core/exceptions/__pycache__/base.cpython-310.pyc b/app/core/exceptions/__pycache__/base.cpython-310.pyc deleted file mode 100644 index ef9425e..0000000 Binary files a/app/core/exceptions/__pycache__/base.cpython-310.pyc and /dev/null differ diff --git a/app/core/exceptions/__pycache__/business.cpython-310.pyc b/app/core/exceptions/__pycache__/business.cpython-310.pyc deleted file mode 100644 index b7f435d..0000000 Binary files a/app/core/exceptions/__pycache__/business.cpython-310.pyc and /dev/null differ diff --git a/app/core/handlers/__pycache__/__init__.cpython-310.pyc b/app/core/handlers/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 9db051d..0000000 Binary files a/app/core/handlers/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/app/core/handlers/__pycache__/exception_handlers.cpython-310.pyc b/app/core/handlers/__pycache__/exception_handlers.cpython-310.pyc deleted file mode 100644 index 886fb1d..0000000 Binary files a/app/core/handlers/__pycache__/exception_handlers.cpython-310.pyc and /dev/null differ diff --git a/app/core/middleware/__pycache__/__init__.cpython-310.pyc b/app/core/middleware/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index f2361e4..0000000 Binary files a/app/core/middleware/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/app/core/middleware/__pycache__/request.cpython-310.pyc b/app/core/middleware/__pycache__/request.cpython-310.pyc deleted file mode 100644 index 0416b17..0000000 Binary files a/app/core/middleware/__pycache__/request.cpython-310.pyc and /dev/null differ diff --git a/app/schemas/__pycache__/__init__.cpython-310.pyc b/app/schemas/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 30b4b87..0000000 Binary files a/app/schemas/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/app/schemas/__pycache__/adb.cpython-310.pyc b/app/schemas/__pycache__/adb.cpython-310.pyc deleted file mode 100644 index c68fec5..0000000 Binary files a/app/schemas/__pycache__/adb.cpython-310.pyc and /dev/null differ diff --git a/app/schemas/__pycache__/at.cpython-310.pyc b/app/schemas/__pycache__/at.cpython-310.pyc deleted file mode 100644 index 3c26ade..0000000 Binary files a/app/schemas/__pycache__/at.cpython-310.pyc and /dev/null differ diff --git a/app/schemas/__pycache__/device.cpython-310.pyc b/app/schemas/__pycache__/device.cpython-310.pyc deleted file mode 100644 index 7feaa4c..0000000 Binary files a/app/schemas/__pycache__/device.cpython-310.pyc and /dev/null differ diff --git a/app/schemas/__pycache__/plnk.cpython-310.pyc b/app/schemas/__pycache__/plnk.cpython-310.pyc deleted file mode 100644 index 05843f7..0000000 Binary files a/app/schemas/__pycache__/plnk.cpython-310.pyc and /dev/null differ diff --git a/app/schemas/__pycache__/ssh.cpython-310.pyc b/app/schemas/__pycache__/ssh.cpython-310.pyc deleted file mode 100644 index 562c9e6..0000000 Binary files a/app/schemas/__pycache__/ssh.cpython-310.pyc and /dev/null differ diff --git a/app/services/__pycache__/__init__.cpython-310.pyc b/app/services/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 306c14b..0000000 Binary files a/app/services/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/app/services/__pycache__/adb_service.cpython-310.pyc b/app/services/__pycache__/adb_service.cpython-310.pyc deleted file mode 100644 index 09ec6b0..0000000 Binary files a/app/services/__pycache__/adb_service.cpython-310.pyc and /dev/null differ diff --git a/app/services/__pycache__/at_service.cpython-310.pyc b/app/services/__pycache__/at_service.cpython-310.pyc deleted file mode 100644 index 9738088..0000000 Binary files a/app/services/__pycache__/at_service.cpython-310.pyc and /dev/null differ diff --git a/app/services/__pycache__/atx_service.cpython-310.pyc b/app/services/__pycache__/atx_service.cpython-310.pyc deleted file mode 100644 index d7c611b..0000000 Binary files a/app/services/__pycache__/atx_service.cpython-310.pyc and /dev/null differ diff --git a/app/services/__pycache__/plnk_service.cpython-310.pyc b/app/services/__pycache__/plnk_service.cpython-310.pyc deleted file mode 100644 index 2d26c31..0000000 Binary files a/app/services/__pycache__/plnk_service.cpython-310.pyc and /dev/null differ diff --git a/app/services/__pycache__/ssh_service.cpython-310.pyc b/app/services/__pycache__/ssh_service.cpython-310.pyc deleted file mode 100644 index 3631302..0000000 Binary files a/app/services/__pycache__/ssh_service.cpython-310.pyc and /dev/null differ diff --git a/app/utils/__pycache__/__init__.cpython-310.pyc b/app/utils/__pycache__/__init__.cpython-310.pyc deleted file mode 100644 index 499c8e7..0000000 Binary files a/app/utils/__pycache__/__init__.cpython-310.pyc and /dev/null differ diff --git a/app/utils/__pycache__/log.cpython-310.pyc b/app/utils/__pycache__/log.cpython-310.pyc deleted file mode 100644 index ff0a904..0000000 Binary files a/app/utils/__pycache__/log.cpython-310.pyc and /dev/null differ diff --git a/app/utils/__pycache__/structured_log.cpython-310.pyc b/app/utils/__pycache__/structured_log.cpython-310.pyc deleted file mode 100644 index 88c2221..0000000 Binary files a/app/utils/__pycache__/structured_log.cpython-310.pyc and /dev/null differ diff --git a/logs/TermControlAgent.log b/logs/TermControlAgent.log deleted file mode 100644 index e69de29..0000000 diff --git a/logs/app.core.app.factory.log b/logs/app.core.app.factory.log deleted file mode 100644 index e69de29..0000000 diff --git a/logs/app.core.app.router.log b/logs/app.core.app.router.log deleted file mode 100644 index e69de29..0000000 diff --git a/logs/app.core.config.cors.log b/logs/app.core.config.cors.log deleted file mode 100644 index e69de29..0000000 diff --git a/logs/app.core.device.manager.log b/logs/app.core.device.manager.log deleted file mode 100644 index e69de29..0000000 diff --git a/logs/app.core.handlers.exception_handlers.log b/logs/app.core.handlers.exception_handlers.log deleted file mode 100644 index e69de29..0000000 diff --git a/logs/app.core.middleware.request.log b/logs/app.core.middleware.request.log deleted file mode 100644 index e69de29..0000000 diff --git a/logs/app.services.adb_service.log b/logs/app.services.adb_service.log deleted file mode 100644 index e69de29..0000000 diff --git a/logs/app.services.at_service.log b/logs/app.services.at_service.log deleted file mode 100644 index e69de29..0000000 diff --git a/logs/app.services.plnk_service.log b/logs/app.services.plnk_service.log deleted file mode 100644 index e69de29..0000000 diff --git a/logs/app.services.ssh_service.log b/logs/app.services.ssh_service.log deleted file mode 100644 index e69de29..0000000