app.json 871 B

1234567891011121314151617181920212223242526272829303132333435
  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. "NODE_ENV": "development",
  12. "SECRET_TOKEN": {
  13. "description": "A secret key for verifying the integrity of signed cookies.",
  14. "generator": "secret"
  15. },
  16. "PASSWORD_SEED": {
  17. "description": "A password seed is used by password hash generator. ",
  18. "generator": "secret"
  19. },
  20. "INSTALL_PLUGINS": {
  21. "description": "Comma-separated list of plugin package names to install.",
  22. "value": "growi-plugin-lsx,growi-plugin-pukiwiki-like-linker",
  23. "required": false
  24. }
  25. },
  26. "addons": [
  27. "mongolab",
  28. {
  29. "plan": "bonsai:sandbox-6",
  30. "options": {
  31. "version": "5.4.3"
  32. }
  33. }
  34. ]
  35. }