aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswa Kalyan Bhuyan <biswa@surgot.in> 2025-04-24 08:18:27 +0530
committerLibravatarLibravatar Biswa Kalyan Bhuyan <biswa@surgot.in> 2025-04-24 08:18:27 +0530
commit50d5e6534f5e593297a09323e683c7c8b850117b (patch)
tree339d6e8b123c5d4caa4129971e2cb1b960b12a89 /README.md
parent76066679b5bdab53419492066c4e80d2ed3be518 (diff)
downloadfinance-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 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 3f65393..555301d 100644
--- a/README.md
+++ b/README.md
@@ -81,14 +81,14 @@ An application designed to help manage personal finances, including income (like
**Phase 1: Backend Core Setup (Go)**
* [x] Initialize Go project (`go mod init finance/backend`)
-* [ ] 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
+* [x] Set up API framework (Gin Gonic)
+* [x] Set up ORM/DB library (GORM)
+* [x] Design database schema (Users, Accounts, Transactions, Loans, Goals)
+* [x] Set up database connection and migrations
* [ ] Implement User Authentication (Signup, Login, JWT/Session Management)
* [ ] Create basic CRUD APIs for Accounts (e.g., Salary Source, Bank Account)
* [ ] Create basic CRUD APIs for Transactions (Income, Expense)
-* [ ] Create basic CRUD APIs for Loans
+* [x] Create basic CRUD APIs for Loans
* [ ] Create basic CRUD APIs for Goals
* [ ] Set up initial logging and error handling
* [ ] Write unit/integration tests for core API endpoints