From 50d5e6534f5e593297a09323e683c7c8b850117b Mon Sep 17 00:00:00 2001 From: Biswa Kalyan Bhuyan Date: Thu, 24 Apr 2025 08:18:27 +0530 Subject: feat: added basic backend features to it - Set up API framework (Gin Gonic) - Set up ORM/DB library (GORM) - Design database schema (Users, Accounts, Transactions, Loans, Goals) - Set up database connection and migrations --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..462a796 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +.env +.env.local +.env.development +.env.production +.env.test +.env.test.local \ No newline at end of file -- cgit v1.2.3-59-g8ed1b