├── .gitignore ├── LICENSE ├── README.md ├── images ├── after_dbt.png ├── aws_sagemaker.png ├── dbt_card.png ├── dbt_cloud.png ├── dbt_run_history.png ├── raw_table.png ├── stack.jpg └── youtube.png ├── requirements.txt ├── src ├── clients │ ├── dbt_cloud_runner.py │ └── snowflake_client.py ├── custom_decorators.py ├── dbt │ ├── analysis │ │ └── .gitkeep │ ├── data │ │ └── .gitkeep │ ├── dbt_project.yml │ ├── macros │ │ └── .gitkeep │ ├── models │ │ └── metaflow │ │ │ ├── nep_session_events.sql │ │ │ ├── schema.yml │ │ │ └── shopping_events_exploded.sql │ ├── snapshots │ │ └── .gitkeep │ └── tests │ │ └── .gitkeep ├── local.env ├── model │ ├── lstm_model.py │ └── my_reclist.py └── my_dbt_flow.py └── upload └── upload_to_snowflake.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/README.md -------------------------------------------------------------------------------- /images/after_dbt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/images/after_dbt.png -------------------------------------------------------------------------------- /images/aws_sagemaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/images/aws_sagemaker.png -------------------------------------------------------------------------------- /images/dbt_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/images/dbt_card.png -------------------------------------------------------------------------------- /images/dbt_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/images/dbt_cloud.png -------------------------------------------------------------------------------- /images/dbt_run_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/images/dbt_run_history.png -------------------------------------------------------------------------------- /images/raw_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/images/raw_table.png -------------------------------------------------------------------------------- /images/stack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/images/stack.jpg -------------------------------------------------------------------------------- /images/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/images/youtube.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/clients/dbt_cloud_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/src/clients/dbt_cloud_runner.py -------------------------------------------------------------------------------- /src/clients/snowflake_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/src/clients/snowflake_client.py -------------------------------------------------------------------------------- /src/custom_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/src/custom_decorators.py -------------------------------------------------------------------------------- /src/dbt/analysis/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dbt/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dbt/dbt_project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/src/dbt/dbt_project.yml -------------------------------------------------------------------------------- /src/dbt/macros/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dbt/models/metaflow/nep_session_events.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/src/dbt/models/metaflow/nep_session_events.sql -------------------------------------------------------------------------------- /src/dbt/models/metaflow/schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/src/dbt/models/metaflow/schema.yml -------------------------------------------------------------------------------- /src/dbt/models/metaflow/shopping_events_exploded.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/src/dbt/models/metaflow/shopping_events_exploded.sql -------------------------------------------------------------------------------- /src/dbt/snapshots/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dbt/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/local.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/src/local.env -------------------------------------------------------------------------------- /src/model/lstm_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/src/model/lstm_model.py -------------------------------------------------------------------------------- /src/model/my_reclist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/src/model/my_reclist.py -------------------------------------------------------------------------------- /src/my_dbt_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/src/my_dbt_flow.py -------------------------------------------------------------------------------- /upload/upload_to_snowflake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacopotagliabue/post-modern-stack/HEAD/upload/upload_to_snowflake.py --------------------------------------------------------------------------------