You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
740 B

4 years ago
  1. # packs
  2. This directory contains some ready-to-use stickerpack metadata. Currently
  3. it's just all the packs imported from Scalar (the default integration manager).
  4. To use these, copy the packs you want to `web/packs/`, then edit
  5. `web/packs/index.json` to include the file names you copied in the `packs`
  6. array. The index.json file should look something like this:
  7. ```json
  8. {
  9. "homeserver_url": "https://example.com", // required
  10. "homeserver_animated_url": "https://example.com", // optional : the URL of a webserver which provides a media repo with animated media support
  11. "packs": [
  12. "your_telegram_imported_pack.json",
  13. "another_telegram_imported_pack.json",
  14. "scalar-rabbit.json",
  15. "scalar-loading_artist.json"
  16. ]
  17. }
  18. ```