-
Notifications
You must be signed in to change notification settings - Fork 1
/
constants.js
33 lines (32 loc) · 872 Bytes
/
constants.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
31
32
33
const newsUrl = 'https://t.me/aospextended'
const websiteUrl = 'https://aospextended.com'
const APIhost = 'https://api.aospextended.com/'
const donateUrl = 'http://paypal.me/ishubhamsingh'
const Clienthost = 'https://downloads.aospextended.com/'
const devicesJson =
'https://raw.githubusercontent.com/AospExtended/official_devices/'
const buildsJson =
'https://raw.githubusercontent.com/AospExtended-Devices/official_builds/'
const devicesBranch = 'main'
const buildsBranch = 'master'
const cacheInterval = 1800
const botInterval = 300000
const buildsDir = '/home/aexbuilds/builds/'
const addonsDir = '/home/aexbuilds/addons/'
const pushOperation = 'push'
export {
buildsJson,
buildsBranch,
cacheInterval,
APIhost,
buildsDir,
devicesJson,
devicesBranch,
pushOperation,
donateUrl,
websiteUrl,
newsUrl,
addonsDir,
Clienthost,
botInterval,
}