app.json 726 B

123456789101112131415161718192021222324252627282930
  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. }
  24. },
  25. "addons": [
  26. "mongolab",
  27. "redistogo",
  28. "bonsai"
  29. ]
  30. }