├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── README.md ├── azure-pipelines.yml ├── databricks.yml ├── dist └── bundlesDevOpsDemo-0.0.1+20240516.200743-py3-none-any.whl ├── fixtures └── .gitkeep ├── images ├── 1-devOpsProjectCreate.png ├── 2-repoCreation.png ├── 3-PipelineCreation.png ├── 4-pipelineVariables.png ├── 6-pipeline.png ├── 7-pipelineRun.png ├── cicd-workflow.png └── sp_creation.png ├── pytest.ini ├── requirements-dev.txt ├── resources ├── bundlesDevOpsDemo_job.yml └── bundlesDevOpsDemo_pipeline.yml ├── scratch ├── README.md └── exploration.ipynb ├── setup.py ├── src ├── bundlesDevOpsDemo.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── entry_points.txt │ ├── requires.txt │ └── top_level.txt ├── bundlesDevOpsDemo │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── __init__.cpython-312.pyc │ │ └── main.cpython-311.pyc │ └── main.py ├── dlt_pipeline.ipynb └── notebook.ipynb └── tests ├── run-tests.py └── test_nyctaxi.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /databricks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/databricks.yml -------------------------------------------------------------------------------- /dist/bundlesDevOpsDemo-0.0.1+20240516.200743-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/dist/bundlesDevOpsDemo-0.0.1+20240516.200743-py3-none-any.whl -------------------------------------------------------------------------------- /fixtures/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/fixtures/.gitkeep -------------------------------------------------------------------------------- /images/1-devOpsProjectCreate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/images/1-devOpsProjectCreate.png -------------------------------------------------------------------------------- /images/2-repoCreation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/images/2-repoCreation.png -------------------------------------------------------------------------------- /images/3-PipelineCreation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/images/3-PipelineCreation.png -------------------------------------------------------------------------------- /images/4-pipelineVariables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/images/4-pipelineVariables.png -------------------------------------------------------------------------------- /images/6-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/images/6-pipeline.png -------------------------------------------------------------------------------- /images/7-pipelineRun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/images/7-pipelineRun.png -------------------------------------------------------------------------------- /images/cicd-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/images/cicd-workflow.png -------------------------------------------------------------------------------- /images/sp_creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/images/sp_creation.png -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /resources/bundlesDevOpsDemo_job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/resources/bundlesDevOpsDemo_job.yml -------------------------------------------------------------------------------- /resources/bundlesDevOpsDemo_pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/resources/bundlesDevOpsDemo_pipeline.yml -------------------------------------------------------------------------------- /scratch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/scratch/README.md -------------------------------------------------------------------------------- /scratch/exploration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/scratch/exploration.ipynb -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/setup.py -------------------------------------------------------------------------------- /src/bundlesDevOpsDemo.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/src/bundlesDevOpsDemo.egg-info/PKG-INFO -------------------------------------------------------------------------------- /src/bundlesDevOpsDemo.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/src/bundlesDevOpsDemo.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /src/bundlesDevOpsDemo.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/bundlesDevOpsDemo.egg-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/src/bundlesDevOpsDemo.egg-info/entry_points.txt -------------------------------------------------------------------------------- /src/bundlesDevOpsDemo.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | setuptools 2 | -------------------------------------------------------------------------------- /src/bundlesDevOpsDemo.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | bundlesDevOpsDemo 2 | -------------------------------------------------------------------------------- /src/bundlesDevOpsDemo/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.1" 2 | -------------------------------------------------------------------------------- /src/bundlesDevOpsDemo/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/src/bundlesDevOpsDemo/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /src/bundlesDevOpsDemo/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/src/bundlesDevOpsDemo/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /src/bundlesDevOpsDemo/__pycache__/main.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/src/bundlesDevOpsDemo/__pycache__/main.cpython-311.pyc -------------------------------------------------------------------------------- /src/bundlesDevOpsDemo/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/src/bundlesDevOpsDemo/main.py -------------------------------------------------------------------------------- /src/dlt_pipeline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/src/dlt_pipeline.ipynb -------------------------------------------------------------------------------- /src/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/src/notebook.ipynb -------------------------------------------------------------------------------- /tests/run-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/tests/run-tests.py -------------------------------------------------------------------------------- /tests/test_nyctaxi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfeuduran/databricks-bundles-example/HEAD/tests/test_nyctaxi.py --------------------------------------------------------------------------------