A light-weight core banking application.
Banka is a light-weight core banking application that powers banking operations like
- account creation
- customer deposit and withdrawals
This app is meant to support a single bank, where users can signup and create bank accounts online, but must visit the branch to withdraw or deposit money.
Install NodeJs
To get this application running on your local computer, run the following commands.
# Clone this repository
$ git clone https://github.com/OvieMudi/Banka.git
# Navigate to application folder
$ cd Banka
# Install dependencies
$ npm install
# Create .env file in your root directory to store your environment variables
# .env file content must include DATABASE_URL and SECRET_STRING
# Run the app
$ npm start
Banka uses the Mocha test framework and Chai assertion library NodeJs to run automated unit tests on all endpoints.
npm run test
Baka API endpoints are deployed on Heroku. View the docs here.
The UI page pages are deployed to GitHub Pages. Check it out.
- ES6 Javascript (Airbnb style guide)
- Nodejs (Express framework)
- Compiled with Babel
- HTML (UI templates)
- CSS
- Mocha (Test Framework)
- Chai (Assertion Library)
- Istanbul (code instrumenter)
- NYC (Istanbul's command line interface)
- Postman (Manual Testing of API endpoints)
Ovie Udih