-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsettings.js
30 lines (30 loc) · 900 Bytes
/
settings.js
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
module.exports = {
peopleOfInterest: {
minFollowers: 10,
minFollowing: 10,
minFollowerToFollowingRation: 2 // example: 10 followers, 5 following
},
likes: {
enabled: true, // required
tags: [
'funny',
'internetstars',
'comedian',
'youtubepersonality'
], // required
targetPerHour: 40, // target number of pic likes per hour
waitRange: [0, 1], // a random amount of time between these two lengths of time in minutes to wait before liking the pic
// waitRange: [0, 0.2]
maxLikesPerUser: 4
},
comments: null,
follows: {
enabled: true,
waitRange: [0, 60 * 5],
// waitRange: [0, 0.4],
unfollowAfterDays: 1,
followToLikeRatio: 0.01,
// followToLikeRatio: 1,
// targetFollowCount: 50
}
};