# 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
- Clone the repository:
git clone https://github.com/priyanshu-banshisoft/tmdb_graphql.git cd tmdb_graphql
- Install Dependencies:
go mod download
- Run the Go server:
go run main.go
- Build the Docker image:
docker build -t tmdb_graphql .
- 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!