manifest.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "name": "Prestashop",
  3. "id": "prestashop",
  4. "packaging_format": 1,
  5. "description": {
  6. "en": "Create a E-commerce Website",
  7. "fr": "Créer un site ecommerce"
  8. },
  9. "version": "1.7.7.8~ynh1",
  10. "url": "https://www.prestashop.com/",
  11. "upstream": {
  12. "license": "OSL-3.0",
  13. "website": "https://prestashop.com",
  14. "demo": "https://demo.prestashop.com/#/en/front",
  15. "admindoc": "https://yunohost.org/packaging_apps",
  16. "userdoc": "https://yunohost.org/apps",
  17. "code": "https://github.com/PrestaShop/PrestaShop"
  18. },
  19. "license": "OSL-3.0",
  20. "maintainer": {
  21. "name": "frju365",
  22. "email": "abld@abld.info"
  23. },
  24. "previous_maintainers": [
  25. {
  26. "name": "cyp",
  27. "email": "cyp@rouquin.me",
  28. "url": ""
  29. }
  30. ],
  31. "requirements": {
  32. "yunohost": ">> 4.2.4"
  33. },
  34. "multi_instance": true,
  35. "services": [
  36. "nginx",
  37. "php7.3-fpm",
  38. "mysql"
  39. ],
  40. "arguments": {
  41. "install" : [
  42. {
  43. "name": "domain",
  44. "type": "domain"
  45. },
  46. {
  47. "name": "path",
  48. "type": "path",
  49. "example": "/prestashop",
  50. "default": "/prestashop"
  51. },
  52. {
  53. "name": "admin",
  54. "type": "user"
  55. },
  56. {
  57. "name": "is_public",
  58. "type": "boolean",
  59. "default": true
  60. },
  61. {
  62. "name": "password",
  63. "type": "password",
  64. "ask": {
  65. "en": "Set the password for the Admin user ≥ 5 character",
  66. "fr": "Définissez le mot de passe pour l'Administrateur. ≥ cinq charactères"
  67. }
  68. }
  69. ]
  70. }
  71. }