One of roadmap.sh project. This is my small hobby.
tmdb is a command-line tool that fetches and displays movie data
from The Movie Database (TMDB) right in your terminal. Available commands:
playing: Now Playing Moviespopular: Popular Moviestop: Top Rated Moviesupcoming: Upcoming Movies
go version
# go version go1.24.3
just --version
# just 1.40.0PROJECT_ROOT=tmdb
git clone https://github.com/therenotomorrow/tmdb.git "$PROJECT_ROOT"
cd "$PROJECT_ROOT"# copy environment
cp .env.example .env
vim .env
# check code integrity
just code test build# run application
./bin/tmdb -help
# you could inject `TMDB_TOKEN` inside binary file (could be unsafe)
just build 'your-token-value'# more just recipes available with
justgit config --local core.hooksPath .githooks