pdf2image icon indicating copy to clipboard operation
pdf2image copied to clipboard

Installing on Aws ElasticBeanstalk

Open offaxis opened this issue 5 years ago • 1 comments

Hi !

Just a message to share how to add this library on a Aws ElasticBeanstalk, by installing dependencies:

.ebextensions/02_install.config

commands:
   01_install_ghostscript:
       command: "sudo yum -y install ghostscript"
   02_install_graphicsmagick:
       command: "sudo amazon-linux-extras install GraphicsMagick1.3"
       # https://aws.amazon.com/amazon-linux-2/faqs/#Amazon_Linux_Extras

And your library set in your package.json to be installed with npm install

offaxis avatar Nov 05 '20 15:11 offaxis

Hi @offaxis, thanks for sharing! I really appreciate this guide. Can you help me create a pull request containing a more thorough guide?

You can start by forking this repository and updating this markdown file. Once done, you can create a pull request towards next branch.

Looking forward to see your pull request, thank you. * cheers *

yakovmeister avatar Nov 06 '20 14:11 yakovmeister