Skip to content

Instantly share code, notes, and snippets.

@aquatix
Created January 7, 2015 16:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aquatix/0370a023eee2b3907fde to your computer and use it in GitHub Desktop.
Save aquatix/0370a023eee2b3907fde to your computer and use it in GitHub Desktop.
kontent.yml
# ~/.tmuxinator/kontent.yml
name: kontent
root: ~/workspace/projects/github/kontent/kontent
# Optional tmux socket
# socket_name: foo
# Runs before everything. Use it to start daemons etc.
# pre: sudo /etc/rc.d/mysqld start
pre: git pull; ctags -R
# 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
tmux_options: -2
# Change the command to call tmux. This can be used by derivatives/wrappers like byobu.
# tmux_command: byobu
windows:
- server:
layout: main-vertical
panes:
- cd . ; workon kontent; echo 1
- cd . ; workon kontent; echo 2
- cd . ; workon kontent; ./manage.py runserver 0.0.0.0:9000
- editor: cd ./kontent ; workon kontent; vim models.py views.py forms.py urls.py ../kontent/urls.py tests.py admin.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment