Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Dev #17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Dev #17
Changes from all commits
dfc439038bd6b450bc803692768cb9ba7eb34fda0223ccd53b5c6922a3704393e25256b4f5e978ac3c1b07c8705f48e6df7ee58d581f6f228f9ab91f4d3587b0a5192db02dd5030ca15bf93a9b300bd8d625615eb48f507384c38c0935bc908928f57200322dd83fd45016f6333ef53ce512057d7e3e6d124c2e11ee3d7326d68e3e377bd2c1c9b352537f8dfdeb3eee6a09ea96ceb809936be14544929b4b5b1fa502b4aa4eb2b828f7a488f56d354885a4120eb4ed23bd30a948dd6612019d634575dea42900d3e56ce69fea78e9dbb8ab8235196d5304665f03ec5faed0dbf15f19c8b87ff29c76d6c99be645ecec1424236dd281889290740332d0c0281af5f6c7a89b544aa152d6e43389f316b4e0931f6efe6ab6a6d53edab65d2a7a5d4e2dafb92fef61bb722afb2dc1dc7d8146fb5549e1d738f21aa06347ecbdc7a7a264948061e149c7f5c5b59fcf313691a45e06c970f0d6dbe4eb4df99276961ad6964cc8b90ffa05a9de483561d868e5d94125bd0527fef3c5529d1393c0f37637018c0e625dc0a98ba500ddb57bddf5b0505e1c180badffd22a300df89f652f21b8d903059754c2c9f0ec735c5567e528db8134f20acee0a8e133d454dfd1a49d066a4104695dd5e15161a5c5de589ee4cebd1d2983149b982ef5ae7a24942727db051cdb1463abbe694a571084acb598346e2c0670c21797b538436d064803b106e3a508b3f60f2d7971a87de75d309adf1cfa0398133d663c51a999d433e3076201dd33dcc902b1e00e887273c4c88041e2e367dd2e0976867dcce211e22742ea60688296d03d35cb3ef927b801cc4f04c87841aa669b467860163a869f5672779c8086be3f93File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
There are no files selected for viewing
MA6_Debt
MA6_Debt
MA6 Debt - Personal Debt & Wallet Management
A full-stack personal finance application for managing wallets, tracking debts with partners, and monitoring expenses.
Introduction
MA6 Debt is a comprehensive personal finance management application that helps you:
Tech Stack
Backend
Frontend
Project Structure
How to Run
Prerequisites
Backend Setup
cd backendsrc/API/appsettings.Development.json:{ "ConnectionStrings": { "DefaultConnection": "Host=localhost; Port=5432; Database=ma6_debt_db; Username=your_name; Password=your_password" }, "Jwt": { "Secret": "YourSecretKeyLongerThan32Characters!", "Issuer": "MA6Debt", "Audience": "MyUsers", "ExpirationMinutes": 60 } }Backend runs at:
https://localhost:7297Frontend Setup
cd frontend.env.local:Frontend runs at:
http://localhost:3000Features & Flows
1. Authentication
2. Wallet Management
3. Debt Partners
4. Quick Deduct (Main Transaction Flow)
5. Transaction History
6. Wallet Transfers
7. Dashboard
8. Profile Management
API Endpoints
Auth
POST /api/auth/login- LoginPOST /api/auth/register- RegisterWallets
GET /api/wallets- List walletsPOST /api/wallets- Create walletPUT /api/wallets/{id}- Update walletDELETE /api/wallets/{id}- Delete walletDebt Partners
GET /api/debt-partners- List partnersPOST /api/debt-partners- Create partnerPUT /api/debt-partners/{id}- Update partnerDELETE /api/debt-partners/{id}- Delete partnerTransactions
GET /api/transactions- List transactions (paginated)GET /api/transactions/{id}- Get transaction detailPOST /api/transactions/quick-deduct- Quick deductPOST /api/transactions/adjustment- Cash adjustmentPUT /api/transactions/{id}- Update transactionDELETE /api/transactions/{id}- Delete transactionGET /api/transactions/monthly-stats- Monthly statisticsTransfers
POST /api/transfers- Create transferGET /api/transfers- List transfersUsers
GET /api/users/profile- Get profilePUT /api/users/profile- Update profilePUT /api/users/password- Change passwordGET /api/users/preferences- Get preferencesPUT /api/users/default-wallet- Set default walletPUT /api/users/default-partner- Set default partnerAuthor
Made by Thai Shiroru
License
MIT License
Uh oh!
There was an error while loading. Please reload this page.