From 62fa09826afea37e1fffe0c9c24785c4e15089dc Mon Sep 17 00:00:00 2001 From: zhelus Date: Wed, 23 Oct 2024 14:01:25 -0500 Subject: [PATCH] gitignore test --- .gitignore | 4 ++++ db_connection.py => backend/db_connection.py | 0 2 files changed, 4 insertions(+) create mode 100644 .gitignore rename db_connection.py => backend/db_connection.py (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a302e20 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +#all files with the extension .secret will be ignored +backend/*.secret +frontend/*.secret + diff --git a/db_connection.py b/backend/db_connection.py similarity index 100% rename from db_connection.py rename to backend/db_connection.py