I tried to start the server using the readme: npx prisma migrate dev
I got this error:
Generating data for Movies...
GET: /foo/bar/like-netflix/movies/kate 597891.mkv
url: https://undefined/movie/597891?api_key=undefined&append_to_response=images,credits,similar
There was a problem adding this movie TypeError: Cannot read property 'status' of undefined
at getMovieMetaData (/tmp/workspace/homehost/server/models/index.js:16:13)
at processTicksAndRejections (internal/process/task_queues.js:93:5)
at async upsertManyMovies (/tmp/workspace/homehost/server/jobs/index.js:80:20)
at async sync (/tmp/workspace/homehost/server/jobs/index.js:55:27)
My server env is:
TMDB_KEY = '47422a2813d47422a2813d'
SPOTIFY_CLIENT_ID = '<client_id>'
SPOTIFY_CLIENT_SECRET = '<client_secret>'
MOVIES_PATH = '/var/tmp/lisu/like-netflix/movies'
TV_PATH = '/opt/tv/directory'
MUSIC_PATH = '/opt/music/directory'
DATABASE_URL = 'file:./data/media.db'
CLIENT_BASE_URL = 'http://192.168.A.B:3000'
Research
I found that the error is trowed in this file:
homehost/server/services/metadata.js
if (item.type == Type.Movie){
request_url = `https://${process.env.MOVIES_API}/movie/${item.id}?api_key=${process.env.MOVIES_KEY}&append_to_response=images,credits,similar`
}
So my question is, what are the expected values for MOVIES_API and MOVIES_KEY?
Thanks
I tried to start the server using the readme:
npx prisma migrate devI got this error:
My server env is:
Research
I found that the error is trowed in this file:
homehost/server/services/metadata.js
So my question is, what are the expected values for MOVIES_API and MOVIES_KEY?
Thanks