From c05ba7ec7ebbec4c91becfb5b9af9ccebba627ac Mon Sep 17 00:00:00 2001 From: chenwu Date: Fri, 17 Apr 2026 17:04:00 +0800 Subject: [PATCH] Initial commit: Project structure --- .gitignore | 31 +++++++++++++++++++++++++++++++ README.md | 11 +++++++++++ 2 files changed, 42 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7699118 --- /dev/null +++ b/.gitignore @@ -0,0 +1,31 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +env/ +venv/ +ENV/ + +# Databricks +.databricks/ +.databricks-bundles/ +*.dbc + +# IDE +.vscode/ +.idea/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db + +# Logs +*.log + +# Environment variables +.env +.env.local diff --git a/README.md b/README.md new file mode 100644 index 0000000..37f2fbf --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# MarketAnalysis ETL + +This repository contains ETL code for Market Analysis on Databricks. + +## Project Structure +- `notebooks/` - Databricks notebooks +- `src/` - Source code files +- `config/` - Configuration files + +## Setup +Clone the repository and configure Databricks workspace connection.