-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.php.example
More file actions
23 lines (22 loc) · 927 Bytes
/
.env.php.example
File metadata and controls
23 lines (22 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
declare(strict_types=1);
return [
'TENANT_ID' => 'your-tenant-id-here',
'CLIENT_ID' => 'your-client-id-here',
'PRIVATE_KEY_PATH' => __DIR__ . '/private.pem',
'THUMBPRINT' => 'your-thumbprint-here',
'FROM_EMAIL' => 'your-from-email-here',
'HCAPTCHA_SECRET' => 'your-hcaptcha-secret'
'targets' => [
[
'name' => 'scheduleEntries',
'url' => 'https://reg.howloween.ca/console/modules/schedule/ajax/scheduleEntries.ajax.php?shareToken=YOUR_SHARE_TOKEN&start=YYYY-MM-DDTHH%3AMM%3ASS-07%3A00&end=YYYY-MM-DDTHH%3AMM%3ASS-07%3A00',
'file' => __DIR__ . '/scheduleEntries.json',
],
[
'name' => 'resources',
'url' => 'https://reg.howloween.ca/console/modules/schedule/ajax/resources.ajax.php?shareToken=YOUR_SHARE_TOKEN',
'file' => __DIR__ . '/resources.json',
],
],
];