anyone has installed refinerycms on digitalocean that can give me a hint, I am lost trying to make it run
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
In order to install Refinery CMS, the first thing you need to do is get RVM and Ruby installed:
\curl -L https://get.rvm.io | bash -s stable
source /etc/profile.d/rvm.sh
rvm install ruby
Now we need to install MySql and imagemagick:
sudo apt-get install mysql-client mysql-server libmysqlclient-dev imagemagick
Now install Rails and the refinerycms gem:
gem install refinerycms
Then, create a new Rails (note that refinerycms does not yet work with Rails 4) project using the refinerycms template:
mkdir /var/rails
cd /var/rails
rails _3.2.19_ new my_app -m http://refinerycms.com/t/2.1.0
Finally, create a Refinery application with:
refinerycms my_app
We can start it with:
cd my_app
rails serve
It should now be visible at http://your.ip.address:3000/refinery
For more information on getting Refinery CMS up and running, check out their documentation.
For more information on how to deploy a Ruby on Rails appplication in production, check out this tutorial: How To Deploy a Rails App with Passenger and Nginx on Ubuntu 14.04
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.