├── .gitattributes ├── .github └── workflows │ ├── build.yaml │ ├── build_conda_and_pypi.yaml │ └── pr.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .pre-commit-hooks.yaml ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── ci ├── checks │ └── style.sh ├── cpu │ ├── build.sh │ └── upload.sh └── releases │ └── update-version.sh ├── conda └── recipes │ └── frigate │ └── meta.yaml ├── docs ├── Makefile ├── _static │ └── images │ │ ├── logo.png │ │ └── logo.svg ├── cli.rst ├── conf.py ├── customizing.rst ├── index.rst ├── make.bat ├── pre-commit-hook.rst └── sphinx.rst ├── environment.yml ├── frigate ├── __init__.py ├── __main__.py ├── _version.py ├── cli.py ├── gen.py ├── pre_commit_hook.py ├── sphinx │ ├── __init__.py │ └── ext.py ├── templates │ ├── base.jinja2 │ ├── html.jinja2 │ ├── markdown.jinja2 │ └── rst.jinja2 ├── tests │ ├── mockcharts │ │ ├── deps │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── EXAMPLE.md │ │ │ ├── README.md │ │ │ ├── charts │ │ │ │ └── simple-0.1.0.tgz │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ ├── rich │ │ │ ├── .frigate │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── README.rst │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── tests │ │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ │ └── simple │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── EXAMPLE.md │ │ │ ├── README.md │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ ├── service.yaml │ │ │ └── tests │ │ │ │ └── test-connection.yaml │ │ │ └── values.yaml │ ├── test_frigate.py │ └── test_pre_commit_hook.py └── utils.py ├── requirements.txt ├── requirements_docs.txt ├── requirements_test.txt ├── setup.cfg ├── setup.py └── versioneer.py /.gitattributes: -------------------------------------------------------------------------------- 1 | frigate/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/build_conda_and_pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/.github/workflows/build_conda_and_pypi.yaml -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/README.md -------------------------------------------------------------------------------- /ci/checks/style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/ci/checks/style.sh -------------------------------------------------------------------------------- /ci/cpu/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/ci/cpu/build.sh -------------------------------------------------------------------------------- /ci/cpu/upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/ci/cpu/upload.sh -------------------------------------------------------------------------------- /ci/releases/update-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/ci/releases/update-version.sh -------------------------------------------------------------------------------- /conda/recipes/frigate/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/conda/recipes/frigate/meta.yaml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/docs/_static/images/logo.png -------------------------------------------------------------------------------- /docs/_static/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/docs/_static/images/logo.svg -------------------------------------------------------------------------------- /docs/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/docs/cli.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/customizing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/docs/customizing.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/pre-commit-hook.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/docs/pre-commit-hook.rst -------------------------------------------------------------------------------- /docs/sphinx.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/docs/sphinx.rst -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/environment.yml -------------------------------------------------------------------------------- /frigate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/__init__.py -------------------------------------------------------------------------------- /frigate/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/__main__.py -------------------------------------------------------------------------------- /frigate/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/_version.py -------------------------------------------------------------------------------- /frigate/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/cli.py -------------------------------------------------------------------------------- /frigate/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/gen.py -------------------------------------------------------------------------------- /frigate/pre_commit_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/pre_commit_hook.py -------------------------------------------------------------------------------- /frigate/sphinx/__init__.py: -------------------------------------------------------------------------------- 1 | """Sphinx extension for using Frigate your docs.""" 2 | -------------------------------------------------------------------------------- /frigate/sphinx/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/sphinx/ext.py -------------------------------------------------------------------------------- /frigate/templates/base.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/templates/base.jinja2 -------------------------------------------------------------------------------- /frigate/templates/html.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/templates/html.jinja2 -------------------------------------------------------------------------------- /frigate/templates/markdown.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/templates/markdown.jinja2 -------------------------------------------------------------------------------- /frigate/templates/rst.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/templates/rst.jinja2 -------------------------------------------------------------------------------- /frigate/tests/mockcharts/deps/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/deps/.helmignore -------------------------------------------------------------------------------- /frigate/tests/mockcharts/deps/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/deps/Chart.yaml -------------------------------------------------------------------------------- /frigate/tests/mockcharts/deps/EXAMPLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/deps/EXAMPLE.md -------------------------------------------------------------------------------- /frigate/tests/mockcharts/deps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/deps/README.md -------------------------------------------------------------------------------- /frigate/tests/mockcharts/deps/charts/simple-0.1.0.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/deps/charts/simple-0.1.0.tgz -------------------------------------------------------------------------------- /frigate/tests/mockcharts/deps/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/deps/templates/NOTES.txt -------------------------------------------------------------------------------- /frigate/tests/mockcharts/deps/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/deps/templates/_helpers.tpl -------------------------------------------------------------------------------- /frigate/tests/mockcharts/deps/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/deps/templates/deployment.yaml -------------------------------------------------------------------------------- /frigate/tests/mockcharts/deps/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/deps/templates/ingress.yaml -------------------------------------------------------------------------------- /frigate/tests/mockcharts/deps/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/deps/templates/service.yaml -------------------------------------------------------------------------------- /frigate/tests/mockcharts/deps/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/deps/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /frigate/tests/mockcharts/deps/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/deps/values.yaml -------------------------------------------------------------------------------- /frigate/tests/mockcharts/rich/.frigate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/rich/.frigate -------------------------------------------------------------------------------- /frigate/tests/mockcharts/rich/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/rich/.helmignore -------------------------------------------------------------------------------- /frigate/tests/mockcharts/rich/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/rich/Chart.yaml -------------------------------------------------------------------------------- /frigate/tests/mockcharts/rich/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/rich/README.rst -------------------------------------------------------------------------------- /frigate/tests/mockcharts/rich/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/rich/templates/NOTES.txt -------------------------------------------------------------------------------- /frigate/tests/mockcharts/rich/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/rich/templates/_helpers.tpl -------------------------------------------------------------------------------- /frigate/tests/mockcharts/rich/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/rich/templates/deployment.yaml -------------------------------------------------------------------------------- /frigate/tests/mockcharts/rich/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/rich/templates/ingress.yaml -------------------------------------------------------------------------------- /frigate/tests/mockcharts/rich/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/rich/templates/service.yaml -------------------------------------------------------------------------------- /frigate/tests/mockcharts/rich/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/rich/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /frigate/tests/mockcharts/rich/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/rich/values.yaml -------------------------------------------------------------------------------- /frigate/tests/mockcharts/simple/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/simple/.helmignore -------------------------------------------------------------------------------- /frigate/tests/mockcharts/simple/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/simple/Chart.yaml -------------------------------------------------------------------------------- /frigate/tests/mockcharts/simple/EXAMPLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/simple/EXAMPLE.md -------------------------------------------------------------------------------- /frigate/tests/mockcharts/simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/simple/README.md -------------------------------------------------------------------------------- /frigate/tests/mockcharts/simple/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/simple/templates/NOTES.txt -------------------------------------------------------------------------------- /frigate/tests/mockcharts/simple/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/simple/templates/_helpers.tpl -------------------------------------------------------------------------------- /frigate/tests/mockcharts/simple/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/simple/templates/deployment.yaml -------------------------------------------------------------------------------- /frigate/tests/mockcharts/simple/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/simple/templates/ingress.yaml -------------------------------------------------------------------------------- /frigate/tests/mockcharts/simple/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/simple/templates/service.yaml -------------------------------------------------------------------------------- /frigate/tests/mockcharts/simple/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/simple/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /frigate/tests/mockcharts/simple/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/mockcharts/simple/values.yaml -------------------------------------------------------------------------------- /frigate/tests/test_frigate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/test_frigate.py -------------------------------------------------------------------------------- /frigate/tests/test_pre_commit_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/tests/test_pre_commit_hook.py -------------------------------------------------------------------------------- /frigate/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/frigate/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | click 2 | docutils 3 | jinja2 4 | ruamel.yaml -------------------------------------------------------------------------------- /requirements_docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/requirements_docs.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/setup.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rapidsai/frigate/HEAD/versioneer.py --------------------------------------------------------------------------------