app.json 807 B

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