IMPORTANT NOTE: THIS REPOSITORY IS BEING DEPRECATED, PLEASE REACH OUT TO US ON EMAIL IF YOU WISH TO TAKE THIS REPOSITORY OVER.
A slick way to watch folders on big screens.
This is a small Next.js fullstack app that allows you to specify a local folder of images (PNGs) to watch, and an accompanying frontend application displaying these images in a simple yet elegant vertical list.
First, clone the repository and install the dependencies:
npm iThen, run the development server:
npm run devOpen http://localhost:3000 with your browser to see the result.
You can configure a few things by editing the file src/config/index.ts.
ROOT_DIRECTORY- The directory to watch. Can be absolute or relative to the project root.RECURSIVE- Should we scan recursively within folders.MAX_IMAGES- How many images to request.POLL_INTERVAL- How often should the frontend look for updates.FILE_EXTENSIONS- An array of filetypes supported, e.g.["png", "jpg"].SHOW_TITLE- If the title should be overlaid.DISABLE_SCROLL- Should scrolling be blocked?STACK_STYLE- How the image stack should be transformed on the page using regularCSSProperties.
