-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.js
69 lines (56 loc) · 1.18 KB
/
config.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
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
// database
const DB_HOST = '127.0.0.1';
const DB_USER = 'moe';
const DB_PASSWORD = '';
const DB_PORT = 5432;
const DB_NAME = 'nooice';
// app
const APP_HOST = '0.0.0.0';
const APP_PORT = '8000';
// 👑 users that have administrator privileges
const NOOICE = [
266005847, // @utopiaio
];
// Nooice
const GIF = 'http://i.giphy.com/PhKhSXofSAm3e.gif';
const PER_PAGE = 5;
// BANKS - Nemo! 🙌
const BANKS = [
'Abay Bank',
'Addis International Bank',
'Awash International Bank',
'Bank of Abyssinia',
'Berhan International Bank',
'Bunna International Bank',
'Commercial Bank of Ethiopia',
'Construction and Business Bank',
'Cooperative Bank of Oromia',
'Dashen Bank',
'Debub Global Bank',
'Development Bank of Ethiopia',
'Enat Bank',
'Lion International Bank',
'Nib International Bank',
'Oromia International Bank',
'United Bank',
'Wegagen Bank',
'Zemen Bank',
];
// threshold in meters to disable search and re-submission
const THRESHOLD = 500;
const THRESHOLD_REGISTER = 100;
module.exports = {
DB_HOST,
DB_USER,
DB_PASSWORD,
DB_PORT,
DB_NAME,
APP_HOST,
APP_PORT,
NOOICE,
GIF,
PER_PAGE,
BANKS,
THRESHOLD,
THRESHOLD_REGISTER,
};