forked from crux-bphc/fest-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dev-config.js
77 lines (70 loc) · 2.63 KB
/
dev-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
70
71
72
73
74
75
76
77
var config = {
passports: {
facebook: {
clientID: '1963512117202201',
clientSecret: 'a241d0e2064df597bdb6c8a8fc481f98',
callbackURL: "http://localhost:3000/auth/facebook/callback",
profileFields: ['emails', 'displayName']
},
google: {
clientID: '566366256828-ius4a49h14bnl77f8v7esr0g85e8isf8.apps.googleusercontent.com',
clientSecret: 'oQZZbTwcXvebPYUA5zBdbiB8',
callbackURL: "http://localhost:3000/auth/google/callback",
profileFields: ['emails']
},
github: {
clientID: '5fa857907229564490f0',
clientSecret: '91bd7c4d0705dc917f41483350f2cbf04cbc3714',
callbackURL: "http://localhost:3000/auth/github/callback",
profileFields: ['emails']
},
},
database: {
name: "fest-manager-dev",
url: "mongodb://127.0.0.1/",
},
email: {
clientID: "566366256828-qr24q6b72krj9p66u2eccfpak56cjc38.apps.googleusercontent.com",
clientSecret: "qktNgemJfKIKp-NVEkG03C0F",
refreshToken: "1/UoSgLDZVOgXJ-QUp9nh-c2cP7ljIihGZ7_ytbyYxDpQ",
user: "[email protected]",
},
googleServiceAccount: {
"type": "service_account",
"project_id": "pearl-2018",
"private_key_id": "XXXXX",
"private_key": "XXXXX",
"client_email": "XXXXX",
"client_id": "XXXXX",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://accounts.google.com/o/oauth2/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/pearl-41%40pearl-2018.iam.gserviceaccount.com"
},
spreadsheets: {
terpsichore: "XXXXX",
kaleidoscope: "XXXXX",
tilldeaf: "XXXXX",
},
admin: {
username: 'keyes',
password: 'locke',
},
port: 3000,
state: {
registrations: true,
},
strings: {
name: "ATMOS",
tagline: "Technical Fest of Bits Pilani Hyderabad Campus",
organiser: "BITS Pilani Hyderabad Campus",
theme: "Into the Sixth Dimension",
duration: "26th - 28th October",
description: "ATMOS is the annual techno-management fest of Birla Institute of Technology and Science, Pilani – Hyderabad Campus. Right from its inception in 2012, it ...",
keywords: "Atmos, bphc, bits, technical",
url: "https://atmos.bits-hyd.org/",
image: "https://atmos.bits-hyd.org/static/images/meta.png",
twitter: "@BITSAtmos",
}
};
module.exports = config;