app.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. "FILE_UPLOAD": {
  16. "description": "Attached files storage. - mongodb | aws | local | none",
  17. "value": "mongodb",
  18. "required": false
  19. },
  20. "SECRET_TOKEN": {
  21. "description": "A secret key for verifying the integrity of signed cookies.",
  22. "generator": "secret"
  23. },
  24. "PASSWORD_SEED": {
  25. "description": "A password seed is used by password hash generator. ",
  26. "generator": "secret"
  27. },
  28. "INSTALL_PLUGINS": {
  29. "description": "Comma-separated list of plugin package names to install.",
  30. "value": "growi-plugin-lsx,growi-plugin-pukiwiki-like-linker",
  31. "required": false
  32. }
  33. },
  34. "addons": [
  35. "mongolab",
  36. {
  37. "plan": "bonsai:sandbox-6",
  38. "options": {
  39. "version": "6.5.4"
  40. }
  41. }
  42. ]
  43. }