Last active
December 30, 2015 08:09
-
-
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)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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/" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I like the install script 👍.
But I think there is a bug on line 5, it should be
bourbon
instead of two timessass
?