Categorygithub.com/priyanshu-banshisoft/tmdb_graphql
repositorypackage
0.0.0-20240705130853-4520a1eac828
Repository: https://github.com/priyanshu-banshisoft/tmdb_graphql.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

TMDB GraphQL API in Golang

This project converts TMDB REST API to GraphQL using Golang. It provides a GraphQL interface for accessing movie data from TMDB.

Requirements

  • Go 1.18 or higher
  • TMDB API Key

Installation

  1. Clone the repository:
    git clone https://github.com/priyanshu-banshisoft/tmdb_graphql.git
    cd tmdb_graphql
    
  2. Install Dependencies:
    go mod download
    
  3. Run the Go server:
    go run main.go
    
  4. Build the Docker image:
    docker build -t tmdb_graphql .
    
  5. Run the Docker Container:
    docker run -p 8080:8080 tmdb_graphql
    

Learn More

You can learn more about Go Programming Language in the Go Dev.

To learn Docker, check out the Docker 101.

Happy coding!