A personal app that functions as a digital family photo album and as a pomodoro 25-minute timer.
- Built on Flickity
- Swipe (or click-drag) left/right to browse photos
- Default to autoplay, which pauses upon any user interaction.
- Timer icon on the top right corner will launch this feature.
- Screen prompts an unmistakable countdown clock with a do not disturb message for more focused work.
- By default the counter is set at 25 minutes--based on the Pomodoro method--which is easily configurable by modifying
totalSecondsvalue in seconds. Can be found in/js/src/app.js.
cdinto/server-load/folder- Run the following to create a
JSONfile:
$ npm run build- Make sure if
/data/images.jsonfile is created correctly.
cdinto/js/folder- Choose one of the following commands:
// for development
$ npm run dev
// to watch for changes
$ npm run watch
// for production
$ npm run buildNothing runs on the server-side. Once you finished build, simply put all the generated/provided static files on the server of your choice:
/
|
+-css
| +-main.css
|
+-data
| +-images.json
|
+-js
| +-app.dist.js
|
+-index.html

