diff --git a/.env.example b/.env.example index 57eae77..6f9b0b5 100644 --- a/.env.example +++ b/.env.example @@ -17,6 +17,8 @@ CRYPTO_SECRET='' # From https://www.themoviedb.org/settings/api TMDB_API_KEY='' # From https://trakt.tv/oauth/applications +# Click New Application after you've logged in, enter the name of the app, which doesnt matter, and for redirect url, just do https://google.com, it doesnt matter +# Now it will show you those keys TRAKT_CLIENT_ID='' TRAKT_SECRET_ID='' diff --git a/server/routes/users/[id]/recommendation.get.ts b/server/routes/users/[id]/recommendation.get.ts new file mode 100644 index 0000000..d7789fa --- /dev/null +++ b/server/routes/users/[id]/recommendation.get.ts @@ -0,0 +1,5 @@ +export default defineEventHandler(() => { + + + return +}) \ No newline at end of file