Skip to content

Instantly share code, notes, and snippets.

@xdamman
Last active December 30, 2015 08:09
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xdamman/7800477 to your computer and use it in GitHub Desktop.
Save xdamman/7800477 to your computer and use it in GitHub Desktop.
How to install https://ghost.org on your local machine (MacOSX 10.9)
#!/bin/bash
git clone https://github.com/TryGhost/Ghost.git
cd Ghost
git submodule update --init
sudo gem install sass && sudo gem install sass
sudo npm install -g grunt-cli
npm install
grunt init
npm start
open "http://localhost:2368/ghost/"
@xdamman
Copy link
Author

xdamman commented Dec 5, 2013

This expects that you already have NodeJS installed.

You can easily run this shell script with the following command:

curl https://gist.github.com/xdamman/7800477/raw/9e5311b055e7cdde2c385a62841b30cb12f2c527/install+ghost+on+macosx+10.9.sh | sh

@sebgie
Copy link

sebgie commented Dec 18, 2013

I like the install script 👍.
But I think there is a bug on line 5, it should be bourbon instead of two times sass?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment