app.json 1.1 KB

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