app.json 878 B

1234567891011121314151617181920212223
  1. {
  2. "name": "imgproxy",
  3. "description": "Fast and secure standalone server for resizing and converting remote images.",
  4. "keywords": ["image", "resize-images", "crop-image", "microservice", "docker", "jpeg", "png", "libvips"],
  5. "repository": "https://github.com/DarthSim/imgproxy",
  6. "stack": "heroku-16",
  7. "env": {
  8. "IMGPROXY_KEY": {
  9. "description": "Hex-encoded secret key for signing URLs.",
  10. "value": "c84285e0bec255fe163410fcedfe61e256f04a7f93ee25470c4ffd1fdc2aa964",
  11. "required": true
  12. },
  13. "IMGPROXY_SALT": {
  14. "description": "Hex-encoded secret salt for signing URLs.",
  15. "value": "83237eac0f5bb1cfa98d54b00c7057820843b8f0ca390edc7f6b99138cb14937",
  16. "required": true
  17. }
  18. },
  19. "buildpacks": [
  20. { "url": "https://github.com/heroku/heroku-buildpack-apt" },
  21. { "url": "https://github.com/heroku/heroku-buildpack-go" }
  22. ]
  23. }