forked from gitcoinco/code_fund_ads
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.teamocil-example.yml
47 lines (44 loc) · 1.15 KB
/
.teamocil-example.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# SEE: https://github.com/remiprev/teamocil
name: code_fund_ads
windows:
- name: vim
root: /path/to/project
layout: main-vertical
panes:
- commands:
- asdf local ruby 2.6.6
- asdf local nodejs 13.11.0
- nvim
focus: true
- name: console
root: /path/to/project
layout: main-vertical
panes:
- commands:
- asdf local ruby 2.6.6
- asdf local nodejs 13.11.0
- bundle exec rails c
- name: rails
root: /path/to/project
layout: even-horizontal
panes:
- commands:
- asdf local ruby 2.6.6
- asdf local nodejs 13.11.0
- lsof -t -i tcp:3000 | xargs kill -KILL
- redis-cli flushall
- bundle exec rails s
- commands:
- asdf local ruby 2.6.6
- asdf local nodejs 13.11.0
- lsof -t -i tcp:3035 | xargs kill -KILL
- bundle exec ./bin/webpack-dev-server
- name: workers
root: /path/to/project
layout: main-vertical
panes:
- commands:
- asdf local ruby 2.6.6
- asdf local nodejs 13.11.0
- redis-cli flushall
- bundle exec sidekiq -C config/sidekiq.yml