manifest.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "Wifi with me",
  3. "id": "wifiwithme",
  4. "packaging_format": 1,
  5. "description": {
  6. "en": "A form and a map to take a census of people who want create a radio network.",
  7. "fr": "Formulaire & carte pour recenser les aspirant-e-s connecté-e-s à un réseau radio."
  8. },
  9. "maintainer": {
  10. "name": "ljf",
  11. "email": "ljf+yunohost@grimaud.me"
  12. },
  13. "requirements": {
  14. "yunohost": ">> 2.4.0"
  15. },
  16. "multi_instance": "false",
  17. "services": [
  18. "nginx"
  19. ],
  20. "arguments": {
  21. "install" : [
  22. {
  23. "name": "domain",
  24. "type": "domain",
  25. "ask": {
  26. "en": "Choose a domain for Wifi With Me",
  27. "fr": "Choisissez un nom de domaine pour Wifi With Me",
  28. "de": "Wählen Sie bitte einen Domain für Wifi With Me"
  29. },
  30. "example": "domain.org"
  31. },
  32. {
  33. "name": "path",
  34. "type": "path",
  35. "ask": {
  36. "en": "Choose a path for Wifi With Me",
  37. "fr": "Choisissez l'adresse pour Wifi With Me",
  38. "de": "Tragen Sie bitte den Pfad für Wifi With Me ein"
  39. },
  40. "example": "/wifi-with-me",
  41. "default": "/wifi-with-me"
  42. },
  43. {
  44. "name": "admin",
  45. "type": "user",
  46. "ask": {
  47. "en": "Choose the Wifi With Me administrator (must be an existing YunoHost user)",
  48. "fr": "Choisissez l'administrateur de Wifi With Me (doit être un utilisateur YunoHost)",
  49. "de": "Wählen Sie bitte den WifiWithMeadministrator (muss ein vorhandener YunoHost Nutzer sein)"
  50. },
  51. "example": "johndoe"
  52. },
  53. {
  54. "name": "email",
  55. "type": "email",
  56. "ask": {
  57. "en": "Choose email were send notification",
  58. "fr": "Choisissez l'email vers lequel envoyer les notifications",
  59. "de": "Wählen Sie bitte den email"
  60. },
  61. "example": "admin@example.tld"
  62. }
  63. ]
  64. }
  65. }