-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
Financier | ||
# Financier | ||
|
||
Ruby 2.4.0 | Rails 5.1.1 | Postgresql 9.6 | ||
## Ruby 2.4.0 | Rails 5.1.1 | Postgresql 9.6 | ||
|
||
A user has a balance which starts at 0 on user creation and reflects the sum of the amount of all cashflows. | ||
|
||
Each cashflow has an amount, a description, a timestamp, and the user it's assigned to. | ||
|
||
A credit is a positive cashflow amount. (just put 1000 etc) | ||
|
||
A debit is a negative cashflow amount. (just put -100 etc) | ||
You can use this to build a bank or any other finance/account system. | ||
|
||
Updated to Rails 7, ruby 3.1.2. compatible with postgres 9.6+, 14 seems to work fine. | ||
. | ||
. | ||
Dear Noobs: | ||
remember to `rails db:setup` after you clone it. | ||
You can use this to build a bank or any other finance/account system. You can also study this architecture to include in your own rails apps. | ||
|
||
This is super basic without any ui frameworks to just give you a boilerplate starting point where everything works but no design customizations have been made. | ||
|
||
|
||
## Updated to Rails 7, ruby 3.1.2. compatible with postgres 9.6+, 14 seems to work fine. | ||
|
||
Dear Noobs: remember to `rails db:setup` after you clone it. |