From 4c64a4e69f986845b6f7f3ec0c53d8d8ce81c935 Mon Sep 17 00:00:00 2001 From: jason Date: Sun, 8 Mar 2026 22:43:11 -0500 Subject: [PATCH] Add .gitignore --- .gitignore | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..efd1185 --- /dev/null +++ b/.gitignore @@ -0,0 +1,40 @@ +# Dependencies +node_modules/ + +# Build output +client/dist/ +client/build/ + +# Environment +.env +.env.local +.env.production + +# Database +data/ +*.db +*.db-shm +*.db-wal + +# Uploads +uploads/ + +# Logs +logs/ +*.log +npm-debug.log* + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +.DS_Store + +# Testing +coverage/ +.nyc_output/ + +# Temporary +tmp/ +temp/ \ No newline at end of file