Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mikemimik/incoming
API for money management app
https://github.com/mikemimik/incoming
Last synced: about 1 month ago
JSON representation
API for money management app
- Host: GitHub
- URL: https://github.com/mikemimik/incoming
- Owner: mikemimik
- Created: 2015-04-19T05:49:18.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-12T00:52:08.000Z (about 9 years ago)
- Last Synced: 2024-10-14T15:21:33.239Z (2 months ago)
- Language: Ruby
- Homepage:
- Size: 222 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Incoming
API for money management app##END GOAL
- Create project with two APIs
- one API will serve mongodb
- one API will server a RMDB system (mysql, mssql, etc)- mongodb API will use ORM
- mongoose will be use as ORM
- [need RESTful API framework]- RMDBS will use ORM
- sequelize will be used as ORM
- epilogue will be use as RESTful API framework### Getting started
#### requirements
- nodejs
- mysql
- mongodb#### setup
- setup libs/config file### Info
####AssociationsJob -> (hasMany) Wages
Job -> (hasOne) PayrollWage -> (belongsTo) Job
Payroll -> (hasMany) Hours // Not sure if this is needed
Payroll -> (hasOne) Occurance
Payroll -> (belongsTo) JobExpense -> (hasOne) ExpenseType // Could have more than one
Hour -> (hasOne) Job
Hour -> (hasOne) WageExpenseType -> (hasMany) Expense
Occurance ->