app.json 840 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "growi",
  3. "description": "Team collaboration system with markdown",
  4. "keywords": [
  5. "wiki",
  6. "communication"
  7. ],
  8. "repository": "https://github.com/weseek/growi",
  9. "success_url": "/",
  10. "env": {
  11. "SECRET_TOKEN": {
  12. "description": "A secret key for verifying the integrity of signed cookies.",
  13. "generator": "secret"
  14. },
  15. "PASSWORD_SEED": {
  16. "description": "A password seed is used by password hash generator. ",
  17. "generator": "secret"
  18. },
  19. "INSTALL_PLUGINS": {
  20. "description": "Comma-separated list of plugin package names to install.",
  21. "value": "growi-plugin-lsx,growi-plugin-pukiwiki-like-linker",
  22. "required": false
  23. }
  24. },
  25. "addons": [
  26. "mongolab",
  27. {
  28. "plan": "bonsai:sandbox-6",
  29. "options": {
  30. "version": "5.4.3"
  31. }
  32. }
  33. ]
  34. }