Rigel is a desktop application that helps you keep track of the movies and tv shows you watch.
- Discover new media to watch
- Search for media
- Add your media to status lists like
Plan to watch
,Watching
andCompleted
. - See your media in one place on the lists page
- The data is saved only on your device and is never sent anywhere.
In the project-rigel > frontend > src > app
folder create a file constants.ts
Paste the following content into the file
export const TMDB_API_BASE_URL = "https://api.themoviedb.org/3";
export const TMDB_IMAGE_ORIGINAL_BASE_URL =
"https://image.tmdb.org/t/p/original";
export const TMDB_IMAGE_W500_BASE_URL = "https://image.tmdb.org/t/p/w500";
export const TMDB_API_KEY = "<TMDB_API_KEY>";
Sign up on TMDB and create an API key. Paste that API key at the <TMDB_API_KEY>
placeholder in the constants.ts
file.
Run the following commands
wails dev # run development server
wails build # build executable