app.json 826 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "crowi-plus",
  3. "description": "Enhanced Crowi",
  4. "keywords": [
  5. "wiki",
  6. "communication"
  7. ],
  8. "repository": "https://github.com/weseek/crowi-plus",
  9. "success_url": "/",
  10. "env": {
  11. "NODE_ENV": "production",
  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": "crowi-plugin-lsx",
  23. "required": false
  24. }
  25. },
  26. "addons": [
  27. "mongolab",
  28. "redistogo",
  29. {
  30. "plan": "bonsai",
  31. "options": {
  32. "version": "5.1"
  33. }
  34. }
  35. ]
  36. }