app.json 751 B

12345678910111213141516171819202122232425262728293031
  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. "bonsai"
  30. ]
  31. }