-
Notifications
You must be signed in to change notification settings - Fork 1
/
config_sample.php
52 lines (50 loc) · 1.61 KB
/
config_sample.php
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
<?php
return [
'google_token' => '',
'feeds' => [
'all' => [
'Title' => 'All jobs',
'Feed' => 'https://job4joy.com/marketplace/rss/'
],
'webdev' => [
'Title' => 'Web Development',
'Feed' => 'https://job4joy.com/marketplace/rss/?id=3'
],
'software' => [
'Title' => 'Software Development & IT',
'Feed' => 'https://job4joy.com/marketplace/rss/?id=5'
],
'design' => [
'Title' => 'Design & Multimedia',
'Feed' => 'https://job4joy.com/marketplace/rss/?id=2'
],
'mobile' => [
'Title' => 'Mobile Application',
'Feed' => 'https://job4joy.com/marketplace/rss/?id=7'
],
'server' => [
'Title' => 'Host & Server Management',
'Feed' => 'https://job4joy.com/marketplace/rss/?id=6'
],
'writing' => [
'Title' => 'Writing',
'Feed' => 'https://job4joy.com/marketplace/rss/?id=8'
],
'customer' => [
'Title' => 'Customer Service',
'Feed' => 'https://job4joy.com/marketplace/rss/?id=10'
],
'marketing' => [
'Title' => 'Marketing',
'Feed' => 'https://job4joy.com/marketplace/rss/?id=11'
],
'business' => [
'Title' => 'Business Services',
'Feed' => 'https://job4joy.com/marketplace/rss/?id=12'
],
'translations' => [
'Title' => 'Translation & Languages',
'Feed' => 'https://job4joy.com/marketplace/rss/?id=14'
]
]
];