diff options
author | 2025-04-24 08:18:27 +0530 | |
---|---|---|
committer | 2025-04-24 08:18:27 +0530 | |
commit | 50d5e6534f5e593297a09323e683c7c8b850117b (patch) | |
tree | 339d6e8b123c5d4caa4129971e2cb1b960b12a89 /.gitignore | |
parent | 76066679b5bdab53419492066c4e80d2ed3be518 (diff) | |
download | finance-50d5e6534f5e593297a09323e683c7c8b850117b.tar.gz finance-50d5e6534f5e593297a09323e683c7c8b850117b.tar.bz2 finance-50d5e6534f5e593297a09323e683c7c8b850117b.zip |
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
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 6 |
1 files changed, 6 insertions, 0 deletions
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 |