Created
September 25, 2014 14:39
-
-
Save crlane/919e061b6dc082e178a0 to your computer and use it in GitHub Desktop.
jazimba tmuxinator
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
# ~/.tmuxinator/jazimba.yml | |
name: jazimba | |
root: ~/dev/jazimba | |
# Optional tmux socket | |
# socket_name: foo | |
# Runs before everything. Use it to start daemons etc. | |
pre: vagrant up | |
# Runs in each window and pane before window/pane specific commands. Useful for setting up interpreter versions. | |
pre_window: vagrant ssh | |
# 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 | |
windows: | |
- jazimba: | |
layout: tiled | |
panes: | |
- pshell: | |
- workon jz | |
- cd ~/src/jazimba | |
- pshell development.ini | |
- jz: | |
- workon jz | |
- cd ~/src/jazimba | |
- pserve development.ini | |
- chapman: | |
- workon jz | |
- cd ~/src/jazimba | |
- chapmand development.ini -c 4 | |
- dvapi: | |
- workon dvapi | |
- cd ~/src/DataValidation | |
- pserve development.ini --server-name=test --reload | |
- workers: | |
layout: main-vertical | |
panes: | |
- testing: | |
- workon test | |
- cd ~/src/jazimba/jazimba/tests | |
- kilmer: | |
- workon kilmer | |
- cd ~/src/Kilmer | |
- kilmer-worker development.ini | |
- jzc: | |
- workon jz | |
- cd ~/src/jazimba | |
- jazimba-collector development.ini -c 8 | |
- antifraud: | |
- workon fraudprevention | |
- cd ~/src/fraudprevention | |
- pserve development.ini |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment