From 94c01f216961ba0a178c0897d95b2904503c470b Mon Sep 17 00:00:00 2001 From: Kumi Date: Thu, 8 Aug 2024 07:35:19 +0200 Subject: [PATCH] chore: update .gitignore to exclude Coingecko exports Added Coingecko export files (coingecko.json and coingecko-original.json) to .gitignore to prevent them from being tracked by Git. This ensures that large or unnecessary data files do not clutter the repository and facilitates easier version control. --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 2ccbe46..c146a03 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,5 @@ /node_modules/ + +# Coingecko export data +coingecko.json +coingecko-original.json \ No newline at end of file