Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 960 Bytes

README.md

File metadata and controls

41 lines (27 loc) · 960 Bytes

MarvelExplorer

Marvel Explorer is an application that allows you to explore and obtain detailed information about Marvel series. You can discover new series, get details about each one, and explore related resources such as comics and stories.

Installation

Make sure you have Docker installed on your machine before following these steps.

  1. Clone this repository:
gh repo clone Esleiter/marvel-explorer
cd marvel-explorer
  1. Create a .env file based on the provided example
cp .env-example .env
  1. Open the .env file in a text editor and replace the placeholder values with your Marvel API keys:
VITE_MARVEL_API_KEY=YOUR_PUBLIC_KEY
VITE_MARVEL_API_PRIVATE_KEY=YOUR_PRIVATE_KEY
  1. Build the Docker image:
docker build -t marvel-explorer .
  1. Run the application in a Docker container:
docker run -p 8080:80 marvel-explorer

The application will be available at http://localhost:8080.