Skip to content
sayanee edited this page Feb 2, 2014 · 5 revisions

Automation script blog to start up this project:

#!/bin/bash

# USAGE in the command line:
# blog

app="/Users/sayanee/Workspace/blog/app"

open $app
subl $app

open /Applications/Tower.app
open https://github.com/sayanee/blog/issues?state=open
open http://localhost:4000
open http://blog.sayan.ee

tmuxinator blog

Tmuxinator config in file ~/.tmuxinator/blog.yml

name: blog
root: /Users/sayanee/Workspace/blog/app
windows:
  - blog:
      layout: main-vertical
      panes:
        - git pull && ls
        - jekyll serve --watch --config _dev_config.yml
        - grunt

Clone this wiki locally