Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Finished Exchange Rate App #19

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.

# dependencies
/node_modules

# testing
/coverage

# production

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
34 changes: 32 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,32 @@
# assignment_exchange_rates
How much does a Big Mac cost in Italy?
# Exchange Rates and Big Macs REACT App

The exchange rate application in REACT, uses [Foreign Exchangerates Api/](https://exchangeratesapi.io/) (date published by European Central Bank) JSON API to obtain foreign exchange rates. Here user can check in an easy and quick way:
- latest exchange Rates for a currency of choice
- convert currencies of choice
- compare to historical rate across number of months or years


This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).


<p align="center">
<img src="/public/preview.png" width="650"/>
</p>

## Getting Started

If you have [installed node](https://nodejs.org/en/download/) on your computer, type the following commands. User Node version newer than v5.9.1.

```bash
$ npm start
```


## Authors

* **Dariusz Biskupski** - *Initial work* - https://dariuszbiskupski.com


## Acknowledgments

This assignment is created for [Viking Code School](https://www.vikingcodeschool.com/)
2,229 changes: 2,229 additions & 0 deletions README_REACT.old.md

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions build/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"main.css": "static/css/main.448fa9ca.css",
"main.css.map": "static/css/main.448fa9ca.css.map",
"main.js": "static/js/main.d5a93717.js",
"main.js.map": "static/js/main.d5a93717.js.map"
}
Binary file added build/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions build/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name="theme-color" content="#000000"><link rel="manifest" href="/manifest.json"><link rel="shortcut icon" href="/favicon.ico"><title>React App</title><link href="/static/css/main.448fa9ca.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script type="text/javascript" src="/static/js/main.d5a93717.js"></script></body></html>
15 changes: 15 additions & 0 deletions build/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
}
],
"start_url": "./index.html",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
Binary file added build/preview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions build/service-worker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions build/static/css/main.448fa9ca.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions build/static/css/main.448fa9ca.css.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions build/static/js/main.d5a93717.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions build/static/js/main.d5a93717.js.map

Large diffs are not rendered by default.

Loading