app.json 867 B

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