├── .github ├── ISSUE_TEMPLATE │ └── user-story.md └── workflows │ └── validate-template.yaml ├── .gitignore ├── README.md ├── cookiecutter.json ├── doc └── README.md ├── img ├── ducking-the-lake.png └── featured.png ├── pixi.lock ├── pyproject.toml ├── scripts └── handle-dev-secrets.sh ├── yamllintconfig.yaml └── {{ cookiecutter.project_slug }} ├── .dockerignore ├── .env ├── .github └── ISSUE_TEMPLATE │ └── user-story.md ├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── dagster_docker.yaml ├── docker-compose.yml ├── documentation └── secops │ └── add-key.md ├── pixi.lock ├── prototyping └── proxy │ ├── .env │ ├── README.md │ ├── docker-compose.yml │ └── services │ └── proxy │ └── rules │ ├── middlewares-chains.yml │ ├── middlewares.yml │ └── tls-opts.yml ├── public-age-keys.txt ├── pyproject.toml ├── scripts ├── decrypt_secrets.sh ├── encrypt_secrets.sh ├── git_clean_local_branches.sh ├── secops_config.sh └── simplify-public-keys.sh ├── src ├── code_location_foo │ ├── README.md │ ├── dagster_cloud.yaml │ ├── pyproject.toml │ ├── quickstart_etl │ │ ├── __init__.py │ │ ├── definitions.py │ │ └── defs │ │ │ ├── __init__.py │ │ │ └── hn │ │ │ ├── __int__.py │ │ │ ├── component.py │ │ │ └── hackernews.py │ ├── quickstart_etl_tests │ │ ├── __init__.py │ │ └── test_defs.py │ ├── setup.cfg │ └── setup.py ├── code_location_{{ cookiecutter.project_slug }} │ ├── code_location_{{ cookiecutter.project_slug }} │ │ ├── __init__.py │ │ ├── definitions.py │ │ └── defs │ │ │ ├── __init__.py │ │ │ ├── dbt │ │ │ ├── __init__.py │ │ │ ├── component.py │ │ │ └── resources │ │ │ │ ├── __init__.py │ │ │ │ ├── duckdb_path.py │ │ │ │ └── sql_asset_keys.py │ │ │ └── logistics │ │ │ ├── __init__.py │ │ │ └── logistics_example.py │ ├── code_location_{{ cookiecutter.project_slug }}_dbt │ │ ├── .gitignore │ │ ├── .sqlfluff │ │ ├── .sqlfluffignore │ │ ├── README.md │ │ ├── analyses │ │ │ └── .gitkeep │ │ ├── dbt_project.yml │ │ ├── macros │ │ │ ├── .gitkeep │ │ │ └── create_latest_version_view.sql │ │ ├── models │ │ │ └── example │ │ │ │ ├── __example_docs.md │ │ │ │ ├── my_first_dbt_model.sql │ │ │ │ ├── my_second_dbt_model.sql │ │ │ │ └── schema.yml │ │ ├── package-lock.yml │ │ ├── packages.yml │ │ ├── profiles.yml │ │ ├── seeds │ │ │ └── .gitkeep │ │ ├── snapshots │ │ │ └── .gitkeep │ │ └── tests │ │ │ └── .gitkeep │ ├── code_location_{{ cookiecutter.project_slug }}_tests │ │ ├── __init__.py │ │ └── test_defs_load.py │ └── pyproject.toml └── shared_library │ ├── pyproject.toml │ └── shared_library │ ├── __init__.py │ └── orchestration │ ├── __init__.py │ ├── dbt_translator.py │ └── resources │ ├── __init__.py │ └── utils.py ├── workspace.yaml ├── workspace_docker.yaml └── yamllintconfig.yaml /.github/ISSUE_TEMPLATE/user-story.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/.github/ISSUE_TEMPLATE/user-story.md -------------------------------------------------------------------------------- /.github/workflows/validate-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/.github/workflows/validate-template.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/README.md -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/doc/README.md -------------------------------------------------------------------------------- /img/ducking-the-lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/img/ducking-the-lake.png -------------------------------------------------------------------------------- /img/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/img/featured.png -------------------------------------------------------------------------------- /pixi.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/pixi.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/handle-dev-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/scripts/handle-dev-secrets.sh -------------------------------------------------------------------------------- /yamllintconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/yamllintconfig.yaml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/.dockerignore -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/.env -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/.github/ISSUE_TEMPLATE/user-story.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/.github/ISSUE_TEMPLATE/user-story.md -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/.gitignore -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/Dockerfile -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/Makefile -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/README.md -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/dagster_docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/dagster_docker.yaml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/docker-compose.yml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/documentation/secops/add-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/documentation/secops/add-key.md -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/pixi.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/pixi.lock -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/prototyping/proxy/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/prototyping/proxy/.env -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/prototyping/proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/prototyping/proxy/README.md -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/prototyping/proxy/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/prototyping/proxy/docker-compose.yml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/prototyping/proxy/services/proxy/rules/middlewares-chains.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/prototyping/proxy/services/proxy/rules/middlewares-chains.yml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/prototyping/proxy/services/proxy/rules/middlewares.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/prototyping/proxy/services/proxy/rules/middlewares.yml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/prototyping/proxy/services/proxy/rules/tls-opts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/prototyping/proxy/services/proxy/rules/tls-opts.yml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/public-age-keys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/public-age-keys.txt -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/pyproject.toml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/scripts/decrypt_secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/scripts/decrypt_secrets.sh -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/scripts/encrypt_secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/scripts/encrypt_secrets.sh -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/scripts/git_clean_local_branches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/scripts/git_clean_local_branches.sh -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/scripts/secops_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/scripts/secops_config.sh -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/scripts/simplify-public-keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/scripts/simplify-public-keys.sh -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_foo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_foo/README.md -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_foo/dagster_cloud.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_foo/dagster_cloud.yaml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_foo/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_foo/pyproject.toml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_foo/quickstart_etl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_foo/quickstart_etl/__init__.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_foo/quickstart_etl/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_foo/quickstart_etl/definitions.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_foo/quickstart_etl/defs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_foo/quickstart_etl/defs/hn/__int__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_foo/quickstart_etl/defs/hn/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_foo/quickstart_etl/defs/hn/component.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_foo/quickstart_etl/defs/hn/hackernews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_foo/quickstart_etl/defs/hn/hackernews.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_foo/quickstart_etl_tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_foo/quickstart_etl_tests/test_defs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_foo/quickstart_etl_tests/test_defs.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_foo/setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | name = quickstart_etl 3 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_foo/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_foo/setup.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}/__init__.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}/definitions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}/definitions.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}/defs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}/defs/dbt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}/defs/dbt/component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}/defs/dbt/component.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}/defs/dbt/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}/defs/dbt/resources/__init__.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}/defs/dbt/resources/duckdb_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}/defs/dbt/resources/duckdb_path.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}/defs/dbt/resources/sql_asset_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}/defs/dbt/resources/sql_asset_keys.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}/defs/logistics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}/defs/logistics/logistics_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}/defs/logistics/logistics_example.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | target/ 3 | dbt_packages/ 4 | logs/ 5 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/.sqlfluff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/.sqlfluff -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/.sqlfluffignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/.sqlfluffignore -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/README.md -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/analyses/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/dbt_project.yml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/macros/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/macros/create_latest_version_view.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/macros/create_latest_version_view.sql -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/models/example/__example_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/models/example/__example_docs.md -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/models/example/my_first_dbt_model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/models/example/my_first_dbt_model.sql -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/models/example/my_second_dbt_model.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/models/example/my_second_dbt_model.sql -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/models/example/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/models/example/schema.yml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/package-lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/package-lock.yml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/packages.yml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/profiles.yml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/snapshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_dbt/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_tests/test_defs_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/code_location_{{ cookiecutter.project_slug }}_tests/test_defs_load.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/code_location_{{ cookiecutter.project_slug }}/pyproject.toml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/shared_library/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/shared_library/pyproject.toml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/shared_library/shared_library/__init__.py: -------------------------------------------------------------------------------- 1 | value_from_library = "foo_the_bar" 2 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/shared_library/shared_library/orchestration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/shared_library/shared_library/orchestration/dbt_translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/shared_library/shared_library/orchestration/dbt_translator.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/shared_library/shared_library/orchestration/resources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/src/shared_library/shared_library/orchestration/resources/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/src/shared_library/shared_library/orchestration/resources/utils.py -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/workspace.yaml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/workspace_docker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/workspace_docker.yaml -------------------------------------------------------------------------------- /{{ cookiecutter.project_slug }}/yamllintconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l-mds/local-data-stack/HEAD/{{ cookiecutter.project_slug }}/yamllintconfig.yaml --------------------------------------------------------------------------------