Go to check it out here here
This project aims to help you get your bank details with your IFSC code. I tend to forget where my bank branch is located or does it offer services like UPI, NEFT, RTGS or IMPS.
So I think this will help serve the purpose for people who might want to look up some information about their bank branch.
On the frontend we are using Angular and on the backend we are hitting a free API provided by Razorpay. To know about API @ Razorpay IFSC Toolkit
- If you haven't done it already, make a fork of this repo.
- Clone to your local computer using
git
. - Make sure that you have Node 12.13.0 or later installed. See instructions here.
- Use
npm install
to download the needed depenedencies for this project. - Don't forget to install the Angular CLI if you haven't already.
- Build and run your app by using the
ng serve
command from the root directory. - Navigate your browser to
http://localhost:4200
. - Make sure you have running internet connection to successfully hit API mentioned in Description.
Are you a Docker fan who wants to just run the application and doesn't care about installing other dependencies or Do you just want to know as to how to run with Docker
Follow the steps:
- Download and install docker.
- If you are on Linux you need to run some post-install steps so that you won't need to run docker with sudo.
- On the root of this project simply run
docker build . -t "<image_name>:<image_tag>"
. - After the image is built just run
docker run --net=host <image_name>:<image_tag>
. - Navigate your browser to
http://localhost:4200
. - Make sure you have running internet connection to successfully hit API mentioned in Description.
Read Contributors guidelines before submitting a PR or creating a new issue.
To contribute hassle free, follow these steps:
- Fork this repository.
- Create a branch:
git checkout -b <branch_name>
. - Make your changes and commit them:
git commit -m '<commit_message>'
- Push to the original branch:
git push origin <project_name>/<location>
- Create the pull request.
- Show your support by ⭐ the project.
Alternatively see the GitHub documentation on creating a pull request.
If you find a bug or think something could be better, please file an issue! If you think a code change should be made, feel free to raise a PR.