This repo collects data about favorite anime, movies, and TV series.
- Fork this repository by clicking the Fork button at the top right of this page or simply click here.
- Clone the fork that you created
Head to TMDB and search for your favorite anime, movie, and TV series and note their name and id. Please write the correct ID and names (e.g below) for consistent data.
Anime
For the project to work properly make sure it's an anime series, and not a movie
ID:
- The id is the path after
https://www.themoviedb.org/tv/
in the TMDB url. - For example, in
https://www.themoviedb.org/tv/37854
the ID is37854
- In
https://www.themoviedb.org/tv/57041-gin-tama
the ID is57041-gin-tama
NAME:
- The name will be the name of anime displayed, please write it in the same case.
- Exapmple, write
One Piece
asOne Piece
and notone Piece
,One piece
orpne piece
Movie
ID:
- The id is the path after
https://www.themoviedb.org/movies/
in the TMDB url. - For example, in
https://www.themoviedb.org/movie/890825-14-peaks-nothing-is-impossible
the ID is890825-14-peaks-nothing-is-impossible
NAME:
- The name will be similar to above (in the same case)
TV Series
ID:
- The id is the path after
https://www.themoviedb.org/tv/
in the TMDB url. - For example, in
https://www.themoviedb.org/tv/62560-mr-robot
the ID is62560-mr-robot
NAME:
- The name will be similar to above (in the same case)
Go to data.js and add your details to the array
{
username: '<github_username>',
favAnime: '<anime name: as on TMDB>',
favAnimeID: 'anime id: as on TMDB',
favMovie: 'movie name: as on TMDB',
favMovieID: 'movie id: as on TMDB',
favSeries: 'series name: as on TMDB',
favSeriesID: 'series id: as on TMDB'
},
- Goto contributors.md and similarly add your name and socials as previously added.
- You can add as many socials as you want
- Improve the UI of the page
- Make any other changes that you want
Create a new branch and checkout to that using git checkout -b <branch_name>
- When you are satisfied with your changes, add those by using
git add .
- Commit you changes with a message
git commit -m "your-message"
Update your branch with main, by using git pull origin main
- Resolve any conflicts (If exist). Add commit again if conflicts exist.
- Push your branch
git push origin <branch_name>
- On the pull request page of GitHub select the correct labels from the right and raise the pull request.
- You have successfully raised a PR, raised a PR. Wait for it to be merged. You can see the live preview here
- (Optional) ⭐ the repo