forked from f0rx4/FClone-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
105 lines (105 loc) · 2.63 KB
/
app.json
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
99
100
101
102
103
104
105
{
"name": "iCopy",
"description": "Fclone Telegram Bot",
"repository": "https://github.com/Nenokkadine/Fclone-Bot",
"keywords": ["Fclone","Icopy"],
"logo" : "https://f002.backblazeb2.com/file/jsuforum-upload/optimized/1X/cff2835c1652bb57a18aac42a3eee34b51cd9b89_2_1380x386.gif",
"env": {
"BOT_TOKEN": {
"description": "Get from Telegram Botfather"
},
"USER_ID": {
"description": "get from telegram get_id_bot"
},
"DB_CONNECT_METHOD": {
"description": "DB Connect Method",
"value": "mongodb+srv"
},
"DB_ADDRESS": {
"description": "MongoDB Host Address"
},
"DB_PORT": {
"description": "MongoDB Port, Default is 27017",
"value": "27017"
},
"DB_NAME": {
"description": "U Can give any name, Default is iCopy",
"value": "iCopy"
},
"DB_USERNAME": {
"description": "MongoDB Username"
},
"DB_PASS": {
"description": "MongoDB Password"
},
"LANGUAGE": {
"description": "English by Default Support cn and jp",
"value": "eng"
},
"CLONER": {
"description": "Dont Change this",
"value": "fclone"
},
"OPTION": {
"description": "Copy or Sync Default is Copy",
"value": "copy"
},
"RCLONE_RMT": {
"description": "Give a Rclone Remote Name Default is also fine",
"value": "icopy"
},
"PARALLEL_CHECKERS": {
"description": "Dont Give More than 300 Heroku Free Dyno may Crash",
"value": "250"
},
"PARALLEL_TRANSFERS": {
"description": "Dont Give More than 300 Heroku Free Dyno may Crash",
"value": "250"
},
"MIN_SLEEP": {
"description": "customize drive-pacer-min-sleep",
"value": "1ms"
},
"SA_INIT_FILE": {
"description": "Give a service account File Name. ex 1.json "
},
"RCLONE_CONFIG": {
"description": "Dont Change",
"value": "/app/iCopy/config/rclone.conf"
},
"SA_ZIP_URL": {
"description": "Service Accounts ZIP URL.It Should be Zipped Such that it should have a folder named accounts with SA in it "
},
"TEAM_DRIVE_ID": {
"description": "Destination Team Drive ID"
},
"RUN_ARGS": {
"description": "Only Change this if U Know",
"value": "['-P', '--ignore-checksum' , '--stats=1s', '--log-level=DEBUG', '--log-file=/app/icopy_cloner_debug.log']"
},
"SA_PATH": {
"description": "Dont Change",
"value": "/app/iCopy/accounts"
}
},
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/heroku/heroku-buildpack-apt.git"
},
{
"url": "https://github.com/opendoor-labs/heroku-buildpack-p7zip.git"
},
{
"url" : "https://github.com/Nenokkadine/Fpack.git"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}