Browse Source

忽略文件

master
hyh 4 months ago
parent
commit
13a83b0f16
  1. 151
      .gitignore
  2. BIN
      app/__pycache__/__init__.cpython-310.pyc
  3. BIN
      app/core/__pycache__/__init__.cpython-310.pyc
  4. BIN
      app/core/adb/__pycache__/__init__.cpython-310.pyc
  5. BIN
      app/core/adb/__pycache__/connection.cpython-310.pyc
  6. BIN
      app/core/app/__pycache__/__init__.cpython-310.pyc
  7. BIN
      app/core/app/__pycache__/factory.cpython-310.pyc
  8. BIN
      app/core/app/__pycache__/router.cpython-310.pyc
  9. BIN
      app/core/config/__pycache__/__init__.cpython-310.pyc
  10. BIN
      app/core/config/__pycache__/cors.cpython-310.pyc
  11. BIN
      app/core/config/__pycache__/settings.cpython-310.pyc
  12. BIN
      app/core/device/__pycache__/__init__.cpython-310.pyc
  13. BIN
      app/core/device/__pycache__/dispatcher.cpython-310.pyc
  14. BIN
      app/core/device/__pycache__/manager.cpython-310.pyc
  15. BIN
      app/core/exceptions/__pycache__/__init__.cpython-310.pyc
  16. BIN
      app/core/exceptions/__pycache__/adb.cpython-310.pyc
  17. BIN
      app/core/exceptions/__pycache__/base.cpython-310.pyc
  18. BIN
      app/core/exceptions/__pycache__/business.cpython-310.pyc
  19. BIN
      app/core/handlers/__pycache__/__init__.cpython-310.pyc
  20. BIN
      app/core/handlers/__pycache__/exception_handlers.cpython-310.pyc
  21. BIN
      app/core/middleware/__pycache__/__init__.cpython-310.pyc
  22. BIN
      app/core/middleware/__pycache__/request.cpython-310.pyc
  23. BIN
      app/schemas/__pycache__/__init__.cpython-310.pyc
  24. BIN
      app/schemas/__pycache__/adb.cpython-310.pyc
  25. BIN
      app/schemas/__pycache__/at.cpython-310.pyc
  26. BIN
      app/schemas/__pycache__/device.cpython-310.pyc
  27. BIN
      app/schemas/__pycache__/plnk.cpython-310.pyc
  28. BIN
      app/schemas/__pycache__/ssh.cpython-310.pyc
  29. BIN
      app/services/__pycache__/__init__.cpython-310.pyc
  30. BIN
      app/services/__pycache__/adb_service.cpython-310.pyc
  31. BIN
      app/services/__pycache__/at_service.cpython-310.pyc
  32. BIN
      app/services/__pycache__/atx_service.cpython-310.pyc
  33. BIN
      app/services/__pycache__/plnk_service.cpython-310.pyc
  34. BIN
      app/services/__pycache__/ssh_service.cpython-310.pyc
  35. BIN
      app/utils/__pycache__/__init__.cpython-310.pyc
  36. BIN
      app/utils/__pycache__/log.cpython-310.pyc
  37. BIN
      app/utils/__pycache__/structured_log.cpython-310.pyc
  38. 0
      logs/TermControlAgent.log
  39. 0
      logs/app.core.app.factory.log
  40. 0
      logs/app.core.app.router.log
  41. 0
      logs/app.core.config.cors.log
  42. 0
      logs/app.core.device.manager.log
  43. 0
      logs/app.core.handlers.exception_handlers.log
  44. 0
      logs/app.core.middleware.request.log
  45. 0
      logs/app.services.adb_service.log
  46. 0
      logs/app.services.at_service.log
  47. 0
      logs/app.services.plnk_service.log
  48. 0
      logs/app.services.ssh_service.log

151
.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/

BIN
app/__pycache__/__init__.cpython-310.pyc

Binary file not shown.

BIN
app/core/__pycache__/__init__.cpython-310.pyc

Binary file not shown.

BIN
app/core/adb/__pycache__/__init__.cpython-310.pyc

Binary file not shown.

BIN
app/core/adb/__pycache__/connection.cpython-310.pyc

Binary file not shown.

BIN
app/core/app/__pycache__/__init__.cpython-310.pyc

Binary file not shown.

BIN
app/core/app/__pycache__/factory.cpython-310.pyc

Binary file not shown.

BIN
app/core/app/__pycache__/router.cpython-310.pyc

Binary file not shown.

BIN
app/core/config/__pycache__/__init__.cpython-310.pyc

Binary file not shown.

BIN
app/core/config/__pycache__/cors.cpython-310.pyc

Binary file not shown.

BIN
app/core/config/__pycache__/settings.cpython-310.pyc

Binary file not shown.

BIN
app/core/device/__pycache__/__init__.cpython-310.pyc

Binary file not shown.

BIN
app/core/device/__pycache__/dispatcher.cpython-310.pyc

Binary file not shown.

BIN
app/core/device/__pycache__/manager.cpython-310.pyc

Binary file not shown.

BIN
app/core/exceptions/__pycache__/__init__.cpython-310.pyc

Binary file not shown.

BIN
app/core/exceptions/__pycache__/adb.cpython-310.pyc

Binary file not shown.

BIN
app/core/exceptions/__pycache__/base.cpython-310.pyc

Binary file not shown.

BIN
app/core/exceptions/__pycache__/business.cpython-310.pyc

Binary file not shown.

BIN
app/core/handlers/__pycache__/__init__.cpython-310.pyc

Binary file not shown.

BIN
app/core/handlers/__pycache__/exception_handlers.cpython-310.pyc

Binary file not shown.

BIN
app/core/middleware/__pycache__/__init__.cpython-310.pyc

Binary file not shown.

BIN
app/core/middleware/__pycache__/request.cpython-310.pyc

Binary file not shown.

BIN
app/schemas/__pycache__/__init__.cpython-310.pyc

Binary file not shown.

BIN
app/schemas/__pycache__/adb.cpython-310.pyc

Binary file not shown.

BIN
app/schemas/__pycache__/at.cpython-310.pyc

Binary file not shown.

BIN
app/schemas/__pycache__/device.cpython-310.pyc

Binary file not shown.

BIN
app/schemas/__pycache__/plnk.cpython-310.pyc

Binary file not shown.

BIN
app/schemas/__pycache__/ssh.cpython-310.pyc

Binary file not shown.

BIN
app/services/__pycache__/__init__.cpython-310.pyc

Binary file not shown.

BIN
app/services/__pycache__/adb_service.cpython-310.pyc

Binary file not shown.

BIN
app/services/__pycache__/at_service.cpython-310.pyc

Binary file not shown.

BIN
app/services/__pycache__/atx_service.cpython-310.pyc

Binary file not shown.

BIN
app/services/__pycache__/plnk_service.cpython-310.pyc

Binary file not shown.

BIN
app/services/__pycache__/ssh_service.cpython-310.pyc

Binary file not shown.

BIN
app/utils/__pycache__/__init__.cpython-310.pyc

Binary file not shown.

BIN
app/utils/__pycache__/log.cpython-310.pyc

Binary file not shown.

BIN
app/utils/__pycache__/structured_log.cpython-310.pyc

Binary file not shown.

0
logs/TermControlAgent.log

0
logs/app.core.app.factory.log

0
logs/app.core.app.router.log

0
logs/app.core.config.cors.log

0
logs/app.core.device.manager.log

0
logs/app.core.handlers.exception_handlers.log

0
logs/app.core.middleware.request.log

0
logs/app.services.adb_service.log

0
logs/app.services.at_service.log

0
logs/app.services.plnk_service.log

0
logs/app.services.ssh_service.log

Loading…
Cancel
Save