https://github.com/geodoo/omdb
Query OMDB and find movies etc.
https://github.com/geodoo/omdb
code-coverage omdb react react-router-dom rest-api travis-ci
Last synced: about 1 month ago
JSON representation
Query OMDB and find movies etc.
- Host: GitHub
- URL: https://github.com/geodoo/omdb
- Owner: GeoDoo
- Created: 2017-11-20T09:51:05.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-24T22:25:54.000Z (over 8 years ago)
- Last Synced: 2025-10-31T08:48:25.334Z (8 months ago)
- Topics: code-coverage, omdb, react, react-router-dom, rest-api, travis-ci
- Language: JavaScript
- Homepage:
- Size: 156 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OMDB search tool
[](https://travis-ci.org/GeoDoo/omdb) [](https://codecov.io/gh/GeoDoo/omdb)
Query OMDB (Open Movie DataBase) and find movies, TV series and episodes or even games that you have been seeking forever with ease!
The API can be found here: http://www.omdbapi.com
## Application Setup
### Get your API KEY
To get your API KEY go to: http://www.omdbapi.com/apikey.aspx, register for one and it will be sent to you in your mailbox.
### Add .env file
After this, create a .env file on your ROOT folder with this key pair:
REACT_APP_API_KEY=yourKey (replace only yourKey with the actual key)
### Available scripts
To run the development server
```sh
npm start
```
To run the tests
```sh
npm test
```
To create a production build, use
```sh
npm run build
```