Created
August 13, 2019 08:45
-
-
Save tvararu/273e6ac9b91bfd88ecb572d5f53c4d2b to your computer and use it in GitHub Desktop.
Tmuxinator config for Becoming a Teacher
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
name: bat | |
# Project hooks | |
# Runs on project start, always | |
# on_project_start: command | |
# Run on project start, the first time | |
# on_project_first_start: command | |
# Run on project start, after the first time | |
# on_project_restart: command | |
# Run on project exit ( detaching from tmux session ) | |
# on_project_exit: command | |
# Run on project stop | |
# on_project_stop: command | |
attach: false | |
on_project_exit: tmux -CC attach | |
windows: | |
- mcfe: | |
root: ~/dfe/manage-courses-frontend | |
panes: | |
- env PORT=3000 puma | |
- | |
- mcbe: | |
root: ~/dfe/manage-courses-backend | |
panes: | |
- bin/rails s | |
- | |
- mcui: | |
root: ~/dfe/manage-courses-ui | |
panes: | |
- cd src/ui; dotnet run | |
- | |
- mcapi: | |
root: ~/dfe/manage-courses-api | |
panes: | |
- cd src/ManageCourses.Api; dotnet run | |
- | |
- scui: | |
root: ~/dfe/search-and-compare-ui | |
panes: | |
- cd src; dotnet run | |
- | |
- scapi: | |
root: ~/dfe/search-and-compare-api | |
panes: | |
- cd src/api; dotnet run | |
- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment