项目作者: BrianQMclaren

项目描述 :
Bank Dashboard displays bank information with data visualizations
高级语言: JavaScript
项目地址: git://github.com/BrianQMclaren/bank-dashboard.git
创建时间: 2018-01-29T19:54:07Z
项目社区:https://github.com/BrianQMclaren/bank-dashboard

开源协议:

下载


Bank-Dashboard-App

Inspiration

screen shot 2019-05-02 at 2 53 48 pm

Development

screen shot 2018-01-29 at 3 11 28 pm

Prerequisites

Install NPM (https://www.npmjs.com/) Install Node.js
(https://nodejs.org/en/download/current/)

Configuration

MongoDB

Add your own MONGOURI from mLAB database in config/keys.js

  1. module.exports = {
  2. mongoURI: "YOUR_MONGO_URI_HERE",
  3. secretOrKey: "secret"
  4. };

Plaid

Add add your own PLAID Creds to these files

  1. routes/api/plaid.js
  1. const PLAID_CLIENT_ID = "YOUR_CLIENT_ID";
  2. const PLAID_SECRET = "YOUR_SECRET";
  3. const PLAID_PUBLIC_KEY = "YOUR_PUBLIC_KEY";
  1. client/src/components/dashboard/Accounts.js
  1. <PlaidLink
  2. className="plaid"
  3. clientName="UNIBANK"
  4. env="sandbox"
  5. product={["transactions"]}
  6. publicKey={"PLAID_PUBLIC_KEY"}
  7. onExit={this.handleLogoutClick}
  8. onSuccess={this.handleOnSuccess}
  9. onScriptLoad={() => this.setState({ loaded: true })}
  10. >

Getting Started

These instructions will get you a copy of the project up and running on your
local machine for development and testing purposes.

Clone or download the project files from my repository

git clone https://github.com/BrianQMclaren/Bank-Dashboard-App

Run this cmd your terminal to get all of the packages for client and server

npm install && npm run client-install

Run client & server concurrently

npm run dev

Server runs on http://localhost:8080 and client on http://localhost:3000

Built With

  • React - The javascript library
    for building user interfaces
  • Express Backend JS Framework
  • Node - Asynchronous event driven JavaScript runtime
  • Redux Global state management
  • MongoDB NoSQL Database
  • d3 - Data driven documents
  • Plaid for bank transaction data
  • Jest - Test javascript code including
    react apps
  • Babel - Javascript complier

Authors

  • Brian McLaren

License

This project is licensed under the MIT License - see the
LICENSE.md file for details