Skip to content

Allentgt/jeopardy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

20 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐ŸŒ˜ A Lightweight FastAPI Project that enables you to host your own Jeopardy game. ๐ŸŒ’

๐Ÿš€ Features:

  • Ability to enable negative marks.
  • Supports audio as well as image questions.
  • Supports mounting local media files and config.

Build with Docker

docker build -t jeopardy .

Run with Docker

docker run -p 8000:8000 --rm jeopardy

Or just run by pulling from Docker Hub

docker run -p 8000:8000 --rm sabya93/jeopardy

To run with a different config file from the host machine

docker run --rm -v <absolute-path-to-config-file>:/config.yaml -e CONFIG_PATH=/config.yaml -v <absolute-path-to-media-folder>:/media -p 8000:8000 sabya93/jeopardy