From 09ee583d6e171da1274d53b0c724bf63e20661dd Mon Sep 17 00:00:00 2001 From: Greg Hendrickson Date: Mon, 2 Feb 2026 23:39:06 +0000 Subject: [PATCH] Add .gitignore to prevent credential leaks --- .gitignore | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b055cca --- /dev/null +++ b/.gitignore @@ -0,0 +1,36 @@ +# Credentials - NEVER commit these +*.env +.env* +secrets/ +*secret* +*credential* +*.pem +*.key + +# Compiled pipelines (regenerate from source) +*.yaml.compiled + +# Python +__pycache__/ +*.py[cod] +*$py.class +.Python +*.so +.eggs/ +*.egg-info/ +dist/ +build/ + +# IDE +.idea/ +.vscode/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db + +# Kubeflow artifacts (local only) +mlpipeline-ui-metadata.json +mlpipeline-metrics.json