An open API service indexing awesome lists of open source software.

https://github.com/andyw8/rmagick-heroku-demo

I thought getting RMagick running on Heroku might be tricky but it was actually very easy.
https://github.com/andyw8/rmagick-heroku-demo

Last synced: 3 months ago
JSON representation

I thought getting RMagick running on Heroku might be tricky but it was actually very easy.

Awesome Lists containing this project

README

        

## Live Demo

Getting this running Heroku was suprisingly easy - they already have the required libraries.

[http://rmagick-demo.herokuapp.com/](http://rmagick-demo.herokuapp.com/)

## Local Setup

To get it running locally, on a Mac with Homebrew:

```
brew install ghostscript
brew install imagemagick
```

Warning: Both of these take *forever* to install. (GhostScript is required for text)

Then to run it:

```
bundle install
./bin/shotgun
```

and visit [http://localhost:9393](http://localhost:9393)

Shotgun is like `rackup` but reloads on each request, so better for development.