Created
November 13, 2014 11:37
-
-
Save arbaaz/b28acc72961bdb2dea7f to your computer and use it in GitHub Desktop.
tinyowl.yml
This file contains hidden or 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
# ~/.tmuxinator/tinyowl.yml | |
name: tinyowl | |
root: ~/ | |
project_root: ~/rd/tinyowl.app/ | |
# Optional tmux socket | |
# socket_name: foo | |
# Runs before everything. Use it to start daemons etc. | |
# pre: sudo /etc/rc.d/mysqld start | |
# Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions. | |
# pre_window: rbenv shell 2.0.0-p247 | |
# Pass command line options to tmux. Useful for specifying a different tmux.conf. | |
# tmux_options: -f ~/.tmux.mac.conf | |
# Change the command to call tmux. This can be used by derivatives/wrappers like byobu. | |
# tmux_command: byobu | |
# - Grunt: cd public/central/ && grunt watch | |
# - server: bundle exec rails s --debugger | |
# - server: | |
# layout: main-vertical | |
# panes: | |
# - rails s | |
# - bundle exec rails s --debugger | |
# # - rake: | |
# - rake resque:work QUEUES=* | |
# # - grunt: | |
# - cd public/central/ && grunt watch | |
windows: | |
- server: | |
layout: main-vertical | |
panes: | |
- bundle exec rails s --debugger | |
- rake resque:work QUEUES=* | |
- cd public/central/ && grunt watch | |
- console: bundle exec rails c -s | |
- git: git status | |
- Bash: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment