-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.conf.sample
96 lines (89 loc) · 2.71 KB
/
app.conf.sample
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
#!/usr/bin/env perl
use utf8;
use strict;
use warnings;
my %users = (
data => {
keedi => {
name => 'Keedi Kim',
email => '[email protected]',
role => 'Member',
avatar => 'https://pbs.twimg.com/profile_images/1814758551/keedi_bigger.jpg',
time_zone => 'Asia/Seoul',
},
yongbin => {
name => 'Yongbin Yu',
email => '[email protected]',
role => 'CEO',
avatar => 'https://pbs.twimg.com/profile_images/96856366/img_9494_doldolshadow_bigger.jpg',
time_zone => 'Asia/Seoul',
},
aanoaa => {
name => 'Hyungsuk Hong',
email => '[email protected]',
role => 'Member',
avatar => 'https://pbs.twimg.com/profile_images/576748805/life_bigger.jpg',
time_zone => 'Asia/Seoul',
},
rumidier => {
name => 'Hanyoung Cho',
email => '[email protected]',
role => 'Member',
avatar => 'https://pbs.twimg.com/profile_images/684939202/__0019_3441__bigger.jpg',
time_zone => 'Asia/Seoul',
},
},
);
+{
#
# for Mojolicious hypnotoad server
#
hypnotoad => {
listen => [ 'http://*:8000' ],
workers => 6,
},
#
# for Bugzilla::Dashboard
#
connect => {
#uri => q{},
#user => q{},
#password => q{},
connect => 0,
},
recent_comments_count => 30,
recent_attachments_count => 30,
comments_string_length => 400,
#
# for create-bug
#
default_product => 'Undef',
default_component => 'Undef',
default_version => 'unspecified',
#
# for session expire
#
expire => {
remember => 604800,
default => 3600,
},
#
# for site
#
secrets => [
'2014-03-11 18:08:40 Asia/Seoul',
'Mon Oct 1 05:00:59 KST 2012',
],
theme => 'adminia',
copyright => '2012 SILEX',
project_name => 'Bugzilla::Dashboard',
project_desc => 'SILEX 버그질라 대시보드',
google_analytics => '',
users => \%users,
header_links => [
{ icon => 'ok', title => 'My Bugs', url => '/mybugs', desc => '내 버그' },
{ icon => 'ok', title => 'Comments', url => '/recent-comments', desc => '최근 댓글' },
{ icon => 'ok', title => 'Attachments', url => '/recent-attachments', desc => '최근 첨부 파일' },
{ icon => 'ok', title => 'Create', url => '/create-bug', desc => '버그 만들기' },
],
};