forked from coko8023/iCopy-Heroku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
101 lines (101 loc) · 2.39 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
{
"name": "TG-iCopy",
"description": "Fclone Telegram Bot",
"repository": "https://github.com/Nenokkadine/Fclone-Bot",
"keywords": ["Fclone","Icopy"],
"env": {
"BOT_TOKEN": {
"description": "Get from Telegram Botfather"
},
"USER_ID": {
"description": "get from telegram get_id_bot"
},
"DB_ADDRESS": {
"description": "MongoDB Host Address"
},
"DB_USERNAME": {
"description": "MongoDB Username"
},
"DB_PASS": {
"description": "MongoDB Password"
},
"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 "
},
"SA_INIT_FILE": {
"description": "Give a service account File Name. ex 1.json "
},
"LANGUAGE": {
"description": "cn by Default Support eng and jp",
"value": "cn"
},
"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"
},
"DB_CONNECT_METHOD": {
"description": "DB Connect Method",
"value": "mongodb+srv"
},
"DB_PORT": {
"description": "MongoDB Port, Default is 27017",
"value": "27017"
},
"DB_NAME": {
"description": "U Can give any name, Default is iCopy",
"value": "iCopy"
},
"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"
},
"MIN_SLEEP": {
"description": "customize drive-pacer-min-sleep",
"value": "1ms"
},
"RCLONE_CONFIG": {
"description": "Dont Change",
"value": "/app/iCopy/config/rclone.conf"
},
"RUN_ARGS": {
"description": "Only Change this if U Know",
"value": "['--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/Godcic/Fpack.git"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}