fork 0k-charms
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.

53 lines
1.2 KiB

  1. # -*- ispell-local-dictionary: "english" -*-
  2. * Usage
  3. ** compose declaration
  4. No options are needed.
  5. #+begin_src yaml
  6. bluesky:
  7. charm: bluesky ## line is optional if your service name is "bluesky"
  8. #+end_src
  9. You might have to configure the domain, if you didn't do it already in
  10. the frontend service configuration with a service-map.
  11. #+begin_src yaml
  12. bluesky:
  13. charm: bluesky ## line is optional if your service name is "bluesky"
  14. relations:
  15. web-proxy:
  16. apache:
  17. domain: bsky.mydomain.org
  18. #+end_src
  19. You probably should also make sure that ~smtp-server~ relation is fulfilled if
  20. you want to be able to verify emails, you could for instance use ~stmp-stub~ to
  21. provide settings for an external SMTP service:
  22. #+begin_src yaml
  23. bluesky:
  24. charm: bluesky ## line is optional if your service name is "bluesky"
  25. # ...
  26. myemail:
  27. charm: smtp-stub
  28. options:
  29. port: 25
  30. connection-security: none # "none", "starttls", "ssl/tls"
  31. auth-method: none # "none", "password"
  32. user: myuser
  33. password: mypassword
  34. #+end_src
  35. ** request a new invite
  36. To be able to add account, you need to create new invites from your
  37. PDS to give to people to create accounts.
  38. #+begin_src sh
  39. compose new-invite bluesky
  40. #+end_src