Adds tmuxinator

This commit is contained in:
Josh Sherman 2016-11-16 10:37:20 -06:00
parent 3945eb6a90
commit 4be49935a8
4 changed files with 43 additions and 0 deletions

10
tmuxinator/blog.yml Normal file
View file

@ -0,0 +1,10 @@
# ~/.tmuxinator/blog.yml
name: blog
root: ~/Code/joshtronic/joshtronic.com
pre: bundle install
windows:
- code:
- server: bundle exec jekyll serve

8
tmuxinator/hapi.yml Normal file
View file

@ -0,0 +1,8 @@
# ~/.tmuxinator/holidayapi.yml
name: hapi
root: ~/Code/joshtronic/holidayapi.com
windows:
- code:
- server: gulp server

11
tmuxinator/sk.yml Normal file
View file

@ -0,0 +1,11 @@
# ~/.tmuxinator/sk.yml
name: sk
root: ~/Code/joshtronic/street
pre: nginx
windows:
- code:
- gulp: gulp
- mysql: mysql street
- redis: redis-cli

14
tmuxinator/sumo.yml Normal file
View file

@ -0,0 +1,14 @@
# ~/.tmuxinator/sumo.yml
name: sumo
root: ~/Code/appsumo/sumome
pre: docker-compose up -d
startup_window: server
windows:
- code:
- build: docker-compose exec node bash
- mysql: docker-compose exec mysql sh -c 'mysql -usumome sumome'
- redis: docker-compose exec redis redis-cli
- server: docker-compose exec node sh -c 'DEBUG="" grunt server' && docker-compose start nginx