forked from beachio/chisel-parse-server-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
67 lines (58 loc) · 1.82 KB
/
config.json
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
{
"parseConfig": {
"appName": "Chisel",
"appId": "SampleAppId",
"masterKey": "SampleMasterKey",
"port": 1337,
"URLserver": "http://localhost:1337/parse",
"GraphQLURLserver": "http://localhost:1337/graphql",
"URLdb": "mongodb://localhost:27017/parse",
"URLsite": "http://localhost:9000",
"maxUploadSize": "10mb",
"verifyUserEmails": true,
"preventLoginWithUnverifiedEmail": true,
"emailAdapter": {
"module": "parse-server-mailgun",
"options": {
"fromAddress": "sample@address.com",
"domain": "sampledomain.com",
"apiKey": "samplekey",
"templates": {
"passwordResetEmail": {
"subject": "Reset your password",
"pathPlainText": "mailTemplates/passwordReset.txt",
"pathHtml": "mailTemplates/passwordReset.html"
},
"verificationEmail": {
"subject": "Confirm your account",
"pathPlainText": "mailTemplates/emailVerify.txt",
"pathHtml": "mailTemplates/emailVerify.html"
},
"inviteEmail": {
"subject": "Inviting you to Chisel",
"pathPlainText": "mailTemplates/invite.txt",
"pathHtml": "mailTemplates/invite.html"
}
}
}
},
"customPages": {
"verifyEmailSuccess": "/email-verify",
"choosePassword": "/password-set",
"passwordResetSuccess": "/password-set-success",
"invalidLink": "/invalid-link",
"invalidVerificationLink": "/invalid-link"
}
},
"extraConfig": {
"dashboardActivated": true,
"userEmail": "test",
"userPassword": "123456",
"siteTemplates": true,
"StripeConfig": {
"keyPublic": "pk_test_sample",
"keyPrivate": "sk_test_sample"
},
"OpenAiAPIKey": "sample"
}
}