Git Product home page Git Product logo

grs-cs-611-finalproject's Introduction

Fancy Bank 611

CS611-5

FancyBank


Name BU-Email BUID
Rui(Richard) Wei [email protected] U02377614
Prithviraj Pankaj Khelkar [email protected] U41575882
Taoyu Chen [email protected] U82740711
Yuxuan Zhang [email protected] U71366232

Files


README.md # the README file
README.txt
docs # the folder contains the design document
├── MVC # the doc for MVC structure
└── Design # the doc for Object Classes design
src # code
├── API
├── Account
│   ├── Loan
│   └── Security
├── Bank
├── BoughtStock
├── DataBase
├── Frontend
├── Main.java
├── Money
├── Person
│   ├── Customer
│   ├── Manager
├── Stock
├── Transact
├── Utils
│   ├── Config.java
│   ├── DAO.java
│   ├── Helpers.java
│   ├── IO.java
│   ├── MessageType.java
│   ├── Tests.java
│   └── TextColors.java
└── fancybank.db

Notes


How to compile and run


  1. Navigate to the main directory of the project after unzipping the files
  2. Run the following instructions:

For Linux/OSX users, please use commands below:

sh build_run.sh # This is used to compile the code, and it should generate a jar package in the main folder
java -jar FancyBank611.jar # This is to run the program

For Windows users, please use commands below in git bash(or any other way that you can run bash) instead:

bash build_run.sh # This is used to compile the code, and it should generate a jar package in the main folder
java -jar FancyBank611.jar # This is to run the program

If the method above failed, please compile manually in powershell:

rm -r bin
mkdir bin
cmd /r dir "*.java" /s /B > sources.txt
javac -encoding utf-8 -d bin -cp ".;lib/sqlite-jdbc-3.36.0.3.jar;lib/forms_rt-7.0.3.jar" "@sources.txt"
jar -cvfm 'FancyBank611.jar' 'MANIFEST.MF' -C 'bin' .
java -jar FancyBank611.jar

grs-cs-611-finalproject's People

Contributors

mirackk avatar prithvirajkhelkar avatar rickwayne1125 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.