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.
- Host: GitHub
- URL: https://github.com/andyw8/rmagick-heroku-demo
- Owner: andyw8
- Created: 2013-05-18T18:22:46.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-05-18T19:16:28.000Z (about 12 years ago)
- Last Synced: 2025-01-05T19:12:54.454Z (5 months ago)
- Language: Ruby
- Homepage:
- Size: 105 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
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.