A small website using OMDb API to fetch movie details
git clone https://github.com/iiitl/moviedb.git
For the OMDb API to work you'll need an API key. You can get one for free from here
After you get an API key, create a file called config.js
in the project root and export an object with API_KEY
set
// Generic config.js file
export default {
API_KEY: "your_api_key",
};
You can use an extension called Live Server to start a live server in the project root
After you start the server, live server automatically opens a browser window with the index.html file open
Contributing guidelines for this repository are available here. Please read them before you start contributing.