app.json 979 B

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