app.json 936 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "Hikka",
  3. "description": "Developer-friendly Telegram userbot",
  4. "logo": "https://i.imgur.com/Nz70F93.jpeg",
  5. "keywords": [
  6. "telegram",
  7. "userbot"
  8. ],
  9. "env": {
  10. "heroku_api_token": {
  11. "description": "Heroku API Token. You can get one at https://dashboard.heroku.com/account"
  12. }
  13. },
  14. "addons": [
  15. {
  16. "plan": "heroku-postgresql"
  17. }
  18. ],
  19. "buildpacks": [
  20. {
  21. "url": "https://github.com/heroku/heroku-buildpack-python"
  22. },
  23. {
  24. "url": "https://github.com/hikariatama/heroku-buildpack"
  25. },
  26. {
  27. "url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
  28. },
  29. {
  30. "url": "https://github.com/jontewks/puppeteer-heroku-buildpack"
  31. },
  32. {
  33. "url": "https://github.com/heroku/heroku-buildpack-apt"
  34. }
  35. ]
  36. }