app.json 601 B

1234567891011121314151617181920212223242526
  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. "mongohq",
  24. "redistogo"
  25. ]
  26. }