From 12d2c1137b26c96271523302fd5d7a0e8ff7c5de Mon Sep 17 00:00:00 2001 From: Steve Dogiakos Date: Thu, 6 Feb 2025 09:40:03 -0700 Subject: [PATCH] Add .gitignore --- .gitignore | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c984022 --- /dev/null +++ b/.gitignore @@ -0,0 +1,74 @@ +# Ignore VS Code workspace settings +.vscode/ +.vscode/* + +# Ignore environment variables (for handling Lubelogger API credentials) +.env +.env.local +.env.development +.env.production +.env.test +.env.* +!.env.example # Keep an example file for reference + +# Ignore Node.js dependencies (if using Node.js) +node_modules/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Ignore system files +.DS_Store +Thumbs.db + +# Ignore compiled files and logs +dist/ +build/ +*.log +*.out +*.lock + +# Ignore Python virtual environments (if applicable) +venv/ +__pycache__/ +*.pyc + +# Ignore temporary files +tmp/ +*.swp +*.swo +*.bak + +# Ignore Git metadata backups +*.orig + +# Ignore uploads and cache (if any) +uploads/ +.cache/ + +# Ignore Google Drive temp files and metadata +*.gdoc +*.gsheet +*.gslides +*.gdraw +*.gtable +*.gform +*.gmap +*.gsite +*.gshortcut +*.gjam + +# Ignore Google Drive sync temp files +*.tmp +*.temp +~$* +*.gdtmp +*.crdownload +*.download + +# Ignore Windows-specific Google Drive conflict files +* (Conflict Copy)* +* (Conflicted Copy)* + +# Ignore desktop.ini and Thumbs.db (Windows system files) +desktop.ini