-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathjustfile
More file actions
40 lines (31 loc) · 767 Bytes
/
justfile
File metadata and controls
40 lines (31 loc) · 767 Bytes
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
import? 'user.just'
# list recipes
default:
just -l
# initial setup (run once)
setup: setup-jbrowse setup-apollo
# initial setup for jbrowse
[working-directory: '../jbrowse-components']
[private]
setup-jbrowse:
yarn
# initial setup for apollo
[private]
setup-apollo:
yarn
# run everything
[parallel]
run: run-jbrowse run-shared run-collab run-plugin
# run jbrowse
[working-directory: '../jbrowse-components/products/jbrowse-web']
run-jbrowse:
yarn start
# run apollo shared
run-shared:
yarn --cwd packages/apollo-shared start
# run apollo collaboration server
run-collab:
yarn --cwd packages/apollo-collaboration-server start --debug --watch
# run apollo jbrowse plugin
run-plugin:
yarn --cwd packages/jbrowse-plugin-apollo start