https://github.com/jackparsonss/movie-picker
Simple CLI tool to manage the movies you watch, and helps you pick when you just aren't sure
https://github.com/jackparsonss/movie-picker
boltdb cli cobra go golang movie-database movies
Last synced: about 2 months ago
JSON representation
Simple CLI tool to manage the movies you watch, and helps you pick when you just aren't sure
- Host: GitHub
- URL: https://github.com/jackparsonss/movie-picker
- Owner: jackparsonss
- Created: 2022-08-09T00:13:58.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-08-25T04:55:41.000Z (over 2 years ago)
- Last Synced: 2025-02-02T02:27:19.487Z (4 months ago)
- Topics: boltdb, cli, cobra, go, golang, movie-database, movies
- Language: Go
- Homepage:
- Size: 403 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# movie-picker
## Usage
1. `go install .`
2. `movie `## Commands
- `movie`: help
- `movie add `: adds a new movie
- `movie add --watched`: adds a movie to the watched list
- `movie watch`: moves movie from movie list to watched list
- `movie list`: lists all movies
- `movie list --watched:` lists all watched movies
- `movie delete `: delete movie based on id
- `movie delete --watched`: delete movie from watched list based on id
- `movie pick`: picks a random movie
- `movie fun`: interactive cli
- `movie web`: web based gui## Dependencies
- [cobra](https://github.com/spf13/cobra)
- [promptui](https://github.com/manifoldco/promptui)
- [boltdb](https://github.com/boltdb/bolt)
- [color](https://github.com/fatih/color)
- [gin](https://github.com/gin-gonic/gin)