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.

20 lines
583 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",
  10. "packs": [
  11. "your_telegram_imported_pack.json",
  12. "another_telegram_imported_pack.json",
  13. "scalar-rabbit.json",
  14. "scalar-loading_artist.json"
  15. ]
  16. }
  17. ```