gitextract_gbz4ssqw/ ├── .bluemix/ │ ├── deploy.json │ ├── locales.yml │ ├── nls/ │ │ └── messages.yml │ ├── pipeline.yml │ └── toolchain.yml ├── .gitignore ├── .ibm-project ├── .travis.yml ├── CONTRIBUTING.md ├── DOCS.md ├── Dockerfile ├── Dockerfile-tools ├── LICENSE.md ├── MAINTAINERS.md ├── README.md ├── accounts/ │ ├── .cfignore │ ├── .dockerignore │ ├── .gitignore │ ├── .ibm-project │ ├── Dockerfile │ ├── Dockerfile-tools │ ├── app.js │ ├── chart/ │ │ └── innovate-accounts/ │ │ ├── Chart.yaml │ │ ├── templates/ │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── cli-config.yml │ ├── idt.js │ ├── manifest.yml │ ├── mongoose/ │ │ └── account.js │ ├── package.json │ └── server.js ├── authentication/ │ ├── .cfignore │ ├── .dockerignore │ ├── .gitignore │ ├── .ibm-project │ ├── Dockerfile │ ├── Dockerfile-tools │ ├── app.js │ ├── chart/ │ │ └── innovate-authentication/ │ │ ├── Chart.yaml │ │ ├── templates/ │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── cli-config.yml │ ├── idt.js │ ├── manifest.yml │ ├── mongoose/ │ │ └── user.js │ ├── package.json │ └── server.js ├── bills/ │ ├── .cfignore │ ├── .dockerignore │ ├── .gitignore │ ├── .ibm-project │ ├── Dockerfile │ ├── Dockerfile-tools │ ├── app.js │ ├── chart/ │ │ └── innovate-bills/ │ │ ├── Chart.yaml │ │ ├── templates/ │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── cli-config.yml │ ├── idt.js │ ├── manifest.yml │ ├── mongoose/ │ │ └── bill.js │ ├── package.json │ └── server.js ├── chart/ │ └── innovate-bank/ │ ├── Chart.yaml │ ├── charts/ │ │ └── mongodb/ │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── templates/ │ │ │ ├── _helpers.tpl │ │ │ ├── deployment.yaml │ │ │ ├── pv.yaml │ │ │ ├── pvc.yaml │ │ │ ├── secrets.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── templates/ │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ ├── ingress.yaml │ │ └── service.yaml │ └── values.yaml ├── cli-config.yml ├── creating-pv.md ├── creating-pvc.md ├── idt.js ├── mongo-db.md ├── package.json ├── portal/ │ ├── .cfignore │ ├── .dockerignore │ ├── .gitignore │ ├── .ibm-project │ ├── Dockerfile │ ├── Dockerfile-tools │ ├── chart/ │ │ └── innovate-portal/ │ │ ├── Chart.yaml │ │ ├── templates/ │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── cli-config.yml │ ├── config.js │ ├── idt.js │ ├── manifest.yml │ ├── package.json │ ├── public/ │ │ ├── accounts.html │ │ ├── bills.html │ │ ├── chat.html │ │ ├── index.html │ │ ├── login.html │ │ ├── overview.html │ │ ├── res/ │ │ │ ├── css/ │ │ │ │ ├── chat.css │ │ │ │ ├── queries.css │ │ │ │ └── styles.css │ │ │ └── js/ │ │ │ ├── accounts.js │ │ │ ├── api.js │ │ │ ├── bills.js │ │ │ ├── common.js │ │ │ ├── conversation.js │ │ │ ├── global.js │ │ │ ├── navbar.js │ │ │ ├── payload.js │ │ │ ├── spending.js │ │ │ └── transactions.js │ │ ├── signup.html │ │ ├── transactions.html │ │ └── vendors/ │ │ └── css/ │ │ ├── animate.css │ │ ├── grid.css │ │ └── normalize.css │ ├── routes/ │ │ ├── accounts.js │ │ ├── auth.js │ │ ├── bills.js │ │ ├── support.js │ │ ├── transactions.js │ │ └── user.js │ └── server.js ├── scripts/ │ └── install_bx.sh ├── support/ │ ├── .cfignore │ ├── .dockerignore │ ├── .gitignore │ ├── .ibm-project │ ├── Dockerfile │ ├── Dockerfile-tools │ ├── app.js │ ├── chart/ │ │ └── innovate-support/ │ │ ├── Chart.yaml │ │ ├── templates/ │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── cli-config.yml │ ├── conversation-workspace.json │ ├── idt.js │ ├── lib/ │ │ └── watson-conversation-setup.js │ ├── manifest.yml │ ├── package.json │ └── server.js ├── transactions/ │ ├── .cfignore │ ├── .dockerignore │ ├── .gitignore │ ├── .ibm-project │ ├── Dockerfile │ ├── Dockerfile-tools │ ├── app.js │ ├── chart/ │ │ └── innovate-transactions/ │ │ ├── Chart.yaml │ │ ├── templates/ │ │ │ ├── deployment.yaml │ │ │ ├── hpa.yaml │ │ │ └── service.yaml │ │ └── values.yaml │ ├── cli-config.yml │ ├── idt.js │ ├── manifest.yml │ ├── mongoose/ │ │ └── transaction.js │ ├── package.json │ └── server.js └── userbase/ ├── .cfignore ├── .dockerignore ├── .gitignore ├── .ibm-project ├── Dockerfile ├── Dockerfile-tools ├── app.js ├── chart/ │ └── innovate-userbase/ │ ├── Chart.yaml │ ├── templates/ │ │ ├── deployment.yaml │ │ ├── hpa.yaml │ │ └── service.yaml │ └── values.yaml ├── cli-config.yml ├── config.js ├── idt.js ├── manifest.yml ├── package.json ├── populate.js └── server.js