-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
98 lines (98 loc) · 2.51 KB
/
config.example.json
File metadata and controls
98 lines (98 loc) · 2.51 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"github_token": "YOUR_GITHUB_TOKEN_HERE",
"telegram_bot_token": "YOUR_TELEGRAM_BOT_TOKEN",
"telegram_chat_id": "YOUR_TELEGRAM_CHAT_ID",
"check_interval_seconds": 300,
"cleanup_non_followers": true,
"cleanup_schedule": {
"enabled": true,
"specific_time": "00:00"
},
"followers_file": "followers.json",
"farming": {
"enabled": true,
"hourly_follow_limit": 40,
"smart_filtering": {
"enabled": true,
"min_following_count": 5,
"max_follower_ratio": 5.0,
"ignore_no_bio": false
},
"dynamic_targeting": {
"enabled": true,
"topics": [
"python",
"javascript",
"rust"
],
"min_stars": 100
},
"farm_from_feed": {
"enabled": true,
"max_users": 20
},
"schedule": {
"enabled": true,
"interval_hours": 24
},
"delay_between_follows": 3,
"target_repos": [
"python/cpython",
"microsoft/vscode",
"torvalds/linux",
"facebook/react",
"vuejs/vue",
"vercel/next.js",
"tensorflow/tensorflow",
"pytorch/pytorch",
"nodejs/node",
"denoland/deno",
"rust-lang/rust",
"golang/go",
"django/django",
"laravel/laravel",
"spring-projects/spring-boot",
"docker/compose",
"kubernetes/kubernetes",
"git/git",
"neovim/neovim"
],
"target_users": [
"github",
"torvalds",
"gvanrossum",
"tj",
"sindresorhus",
"kentcdodds",
"dan_abramov",
"evanw",
"youyuxi",
"rauchg",
"addyosmani",
"paulirish",
"getify",
"dhh",
"antirez",
"matz",
"sbfl",
"bradtraversy"
]
},
"auto_star": {
"enabled": true,
"schedule": {
"enabled": true,
"specific_time": "00:00"
},
"daily_star_limit": 50,
"star_from_following": true,
"max_repos_per_user": 5,
"target_repos": [
"python/cpython",
"facebook/react",
"vuejs/vue",
"tensorflow/tensorflow",
"nodejs/node"
]
}
}