]> git.sesse.net Git - skvidarsync/blob - include/config.pm
Tell users what group they are part of when they sign up.
[skvidarsync] / include / config.pm
1 package config;
2
3 our $client_secret;
4 our $signing_secret;
5 our $slack_oauth_token;  # xoxb-*
6 our $slack_app_token;  # xapp-*
7 our $jwt_key = {
8         "type" => "service_account",
9         "project_id" => "solskogen-cubemap",
10         "private_key_id" => "9eaf56bb4d6b688c3c73bd532fecdde943eea718",
11         "private_key" => undef,
12         "client_email" => "ultimate-nm-2018\@solskogen-cubemap.iam.gserviceaccount.com",
13         "client_id" => "102636658655884526659",
14         "auth_uri" => "https://accounts.google.com/o/oauth2/auth",
15         "token_uri" => "https://accounts.google.com/o/oauth2/token",
16         "auth_provider_x509_cert_url" => "https://www.googleapis.com/oauth2/v1/certs",
17         "client_x509_cert_url" => "https://www.googleapis.com/robot/v1/metadata/x509/ultimate-nm-2018%40solskogen-cubemap.iam.gserviceaccount.com"
18 };
19 our $sheet_id = '1-alcvuB3184rw3pWLcvYjc2d6CnVGpMuvZYMYxn7Cgw';
20 our $log_tab_id = '253633356';
21 our $gsheets_api_key;
22 our $dbname = 'skvidarlang';
23 our $dbuser = 'skvidarlang';
24 our $dbpass;
25 our $invitation_channel = 'C062GSYQ3C6';
26
27 # Read in a local configuration file if it exists.
28 eval {  
29         require '../include/config.local.pm';
30 };
31
32 1;