-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathcapture.plist
More file actions
44 lines (35 loc) · 907 Bytes
/
capture.plist
File metadata and controls
44 lines (35 loc) · 907 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
41
42
43
44
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.bluewavelabs.capture</string>
<key>ProgramArguments</key>
<array>
<string>YOUR_PATH/capture</string>
</array>
<key>WorkingDirectory</key>
<string>YOUR_PATH</string>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>EnvironmentVariables</key>
<dict>
<key>API_SECRET</key>
<string>your_secret_here</string>
<key>PORT</key>
<string>59232</string>
<key>GIN_MODE</key>
<string>release</string>
</dict>
<key>UserName</key>
<string>user_name</string>
<key>GroupName</key>
<string>group_name</string>
<key>StandardOutPath</key>
<string>YOUR_PATH/capture.log</string>
<key>StandardErrorPath</key>
<string>YOUR_PATH/capture.error.log</string>
</dict>
</plist>