Skip to content

RyanLackie/currency-converter-app

This branch is 1 commit ahead of master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

62c5f0a Â· May 11, 2021

History

24 Commits
Aug 5, 2019
Aug 4, 2019
Apr 13, 2021
Apr 13, 2021
Apr 13, 2021
Aug 4, 2019
Aug 4, 2019
Apr 13, 2021
Apr 13, 2021
Apr 13, 2021
Apr 13, 2021
Aug 4, 2019
Apr 13, 2021
May 11, 2021
Apr 13, 2021
Aug 4, 2019

Repository files navigation

Currency Converter

Project setup

This project will need 3 seperate terminals based in the projects root directory with the following code:

Terminal 1

npm install
npm run serve
(Watch for the console output to see the local address the project will be viewable at)

Terminal 2

cd server_py
docker-compose up --build

Terminal 3

cd server_js
docker-compose up --build

About This Project

This application was made to play around with client to server side connections 🥳

In the app you can enter an amount and a currency, and then see the amount it is equal to in another currency using the http://exchangeratesapi.io/ api.

Down at the bottom there is a switch that will display the python or javascript icon. You can use this to switch between the 2 servers (Node and Flask) you started during setup.