-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathama-sample.conf
More file actions
31 lines (31 loc) · 973 Bytes
/
ama-sample.conf
File metadata and controls
31 lines (31 loc) · 973 Bytes
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
{
#required
pg => 'postgresql://mojo:mojo@/test1',
#recommended; secret should not be 'mojo' see: http://mojolicious.org/perldoc/Mojolicious#secrets
secrets => ['mojo'],
#leave out of config to remove login functionality
oauth2 => {
#leave out of config to remove facebook login
facebook => {
#create an app: https://developers.facebook.com
key => 'referred to as app ID',
secret => 'referred to as app-secret',
},
#leave out of config to remove google login
google => {
#create an app: https://console.developers.google.com/apis
key => 'referred to as client ID',
secret => 'referred to as client secret'
},
},
#required; -2 recommended
vote_floor => -int,
#leave out of config to remove email feedback functionality
sendgrid => {
apikey => 'key',
to => q(email),
#cc => q(email),
#bcc => q(email),
from => q(email),
},
};