-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
34 lines (20 loc) · 846 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
## General info
This project is to create data aggregation system.
##Input
user data and aggregation channel (Website, API).
User data will contain:
1. ID
2. Username
3. Last successful aggregation date
aggregation channel (Website, API):
Website - mock website with financial data
https://shirelzisso.github.io/mockbank/mock.html
API - mock API with financial data. Can be found here:
https://shirelzisso.github.io/mockbank/mock.json
#Output
- financial aggregation data (account balance, list of transactions)
#Architecture
I used MVC.
The Model-View-Controller (MVC) is an architectural pattern that separates an application into
three main logical components: the model, the view, and the controller.
Each of these components are built to handle specific development aspects of an application.