-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcom.chatgpt2api.captcha-solver.plist.example
More file actions
45 lines (40 loc) · 1.16 KB
/
Copy pathcom.chatgpt2api.captcha-solver.plist.example
File metadata and controls
45 lines (40 loc) · 1.16 KB
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
<?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.chatgpt2api.captcha-solver</string>
<key>ProgramArguments</key>
<array>
<string>__APP_DIR__/captcha-solver/.venv/bin/python</string>
<string>-m</string>
<string>uvicorn</string>
<string>server:app</string>
<string>--host</string>
<string>127.0.0.1</string>
<string>--port</string>
<string>8877</string>
</array>
<key>WorkingDirectory</key>
<string>__APP_DIR__/captcha-solver</string>
<key>EnvironmentVariables</key>
<dict>
<key>SOLVER_ALLOW_PRIVATE</key>
<string>1</string>
<key>TURNSTILE_HEADLESS</key>
<string>0</string>
<key>TURNSTILE_HIDE_WINDOW</key>
<string>1</string>
<key>TURNSTILE_CONCURRENCY</key>
<string>2</string>
</dict>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
<key>StandardOutPath</key>
<string>__APP_DIR__/logs/captcha-solver.log</string>
<key>StandardErrorPath</key>
<string>__APP_DIR__/logs/captcha-solver.error.log</string>
</dict>
</plist>