a cache for slack profile pictures and emojis

docs: remove demo gif and use dashboard screenshot instead

dunkirk.sh a48cad4f e49b5262

verified
.github/images/out.gif

This is a binary file and will not be displayed.

.github/images/screenshot.jpeg

This is a binary file and will not be displayed.

+2 -17
README.md
··· 1 - <h1 align="center"> 2 - <img src="https://raw.githubusercontent.com/taciturnaxolotl/cachet/master/.github/images/cachet.webp" width="200" alt="Logo"/><br/> 3 - <img src="https://raw.githubusercontent.com/taciturnaxolotl/carriage/master/.github/images/transparent.png" height="45" width="0px"/> 4 - Cachet 5 - <img src="https://raw.githubusercontent.com/taciturnaxolotl/carriage/master/.github/images/transparent.png" height="30" width="0px"/> 6 - </h1> 1 + # Cachet 7 2 8 - <p align="center"> 9 - <i>the slack emoji and profile cache serving the hackclub slack</i> 10 - </p> 11 - 12 - <p align="center"> 13 - <img src="https://raw.githubusercontent.com/taciturnaxolotl/carriage/master/.github/images/line-break-thin.svg" /> 14 - </p> 15 - 16 - <p align="center"> 17 - <img src="https://raw.githubusercontent.com/taciturnaxolotl/cachet/master/.github/images/out.gif" /> 18 - </p> 3 + ![screenshot of the dashboard](https://raw.githubusercontent.com/taciturnaxolotl/cachet/master/.github/images/screenshot.jpeg) 19 4 20 5 <p align="center"> 21 6 <img src="https://raw.githubusercontent.com/taciturnaxolotl/carriage/master/.github/images/line-break-thin.svg" />
-8
cassette.tape
··· 1 - Output .github/images/out.gif 2 - Set Shell zsh 3 - Sleep 1s 4 - Type "bun run src/index.ts" 5 - Enter 6 - Sleep 11s 7 - Ctrl+C 8 - Sleep 1s
-21
generateVHS.sh
··· 1 - #!/bin/sh 2 - 3 - # Start the VHS server 4 - vhs cassette.tape & 5 - 6 - # Wait 2 seconds before running the first curl command 7 - sleep 4 8 - 9 - # Execute the first curl command 10 - curl localhost:3000/users/U062UG485EE 11 - 12 - # Wait 3 seconds before running the second curl command 13 - sleep 2 14 - 15 - curl localhost:3000/emojis/grolf/ 16 - 17 - sleep 3 18 - 19 - curl localhost:3000/emojis/this-does-not-exist/ 20 - 21 - wait