app.json 616 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "Crowi",
  3. "description": "The simple & powerful Wiki",
  4. "keywords": [
  5. "wiki",
  6. "communication"
  7. ],
  8. "website": "https://crowi.wiki/",
  9. "repository": "https://github.com/crowi/crowi",
  10. "success_url": "/",
  11. "env": {
  12. "NODE_ENV": "production",
  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. },
  22. "addons": [
  23. "mongolab",
  24. "redistogo",
  25. "bonsai"
  26. ]
  27. }