Backend service that fetches data from external APIs such as TMDB and Trakt.
Requires Go, preferably the latest version.
Create an app.dev.yaml
file in the root directory and add the following:
env_variables:
PORT: 8082
CLIENT_ORIGIN: http://localhost:4200
TMDB_API_KEY: <YOUR_TMDB_API_KEY>
TRAKT_API_KEY: <YOUR_TRAKT_API_KEY>
Run go build
. Checkout https://stackoverflow.com/questions/69474609/installing-all-dependencies-from-a-go-mod-file
Run go run main.go
or go run .