/moviedb

A small website using oMDb API to fetch movie details

Primary LanguageHTML

moviedb

A small website using OMDb API to fetch movie details

To try it out

Clone the project locally

git clone https://github.com/iiitl/moviedb.git

Put the OMDb API key in a config file

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",
};

Start a server

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.