From f48609a426dd5b2eaf198df6fcd263572afe671e Mon Sep 17 00:00:00 2001 From: Zach Holman Date: Wed, 3 Feb 2016 20:50:18 -0800 Subject: [PATCH] Add script/server --- README.md | 2 +- _config.yml | 1 - script/server | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) create mode 100755 script/server diff --git a/README.md b/README.md index 317d12522..27052dde6 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ You can see it live right here: - [Fork this repository](https://github.com/holman/left/fork) - Clone it: `git clone https://github.com/YOUR-USER/left` - Install ruby things: `bundle install` (if this doesn't work, look into [installing Bundler](http://bundler.io)) -- Run the jekyll server: `jekyll serve -w` +- Start it up: `script/server` You should have a server up and running locally at . diff --git a/_config.yml b/_config.yml index c2240893a..e5efc6395 100644 --- a/_config.yml +++ b/_config.yml @@ -1,4 +1,3 @@ -markdown: rdiscount permalink: /posts/:title rdiscount: extensions: [smart] diff --git a/script/server b/script/server new file mode 100755 index 000000000..0024ed8f5 --- /dev/null +++ b/script/server @@ -0,0 +1 @@ +bundle exec jekyll serve --watch