forked from pantsbuild/pants
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpants.daemon.ini
More file actions
32 lines (31 loc) · 809 Bytes
/
pants.daemon.ini
File metadata and controls
32 lines (31 loc) · 809 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
# A config override that enables use of pantsd. This is currently recommended for beta testers.
#
# Usage:
#
# In a shell that you want to use the daemon in:
#
# $ export PANTS_CONFIG_FILES="$(pwd)/pants.daemon.ini"
#
# And then use pants as you normally would:
#
# $ ./pants ...
#
# To kill the daemon, you can run either `clean-all` or `kill-pantsd`:
#
# $ ./pants clean-all
# $ ./pants kill-pantsd
#
#
# Observation Tools:
#
# To see what's going on with the daemon, you can tail the pantsd log file in another window:
#
# $ cd $SOURCE
# $ tail -F .pants.d/pantsd/pantsd.log
#
# To see what's going on with the client, runner and daemon processes you can watch the process table:
#
# $ watch -n.1 "ps -ef | grep -v grep | grep pants"
#
[GLOBAL]
enable_pantsd: True