-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge main into sweep/add-sweep-config
- Loading branch information
Showing
14,621 changed files
with
1,390,360 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# MongoDB | ||
MONGODB_URI=mongodb+srv://username:password@cluster0.mongodb.net/myFirstDatabase?retryWrites=true&w=majority | ||
|
||
# Facebook API | ||
FACEBOOK_APP_ID=your_facebook_app_id | ||
FACEBOOK_APP_SECRET=your_facebook_app_secret | ||
|
||
# Vercel | ||
VERCEL_TOKEN=your_vercel_token | ||
|
||
# Puppeteer | ||
PUPPETEER_EXECUTABLE_PATH=/path/to/your/puppeteer/executable | ||
|
||
# Other environment variables | ||
NODE_ENV=development | ||
PORT=3000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
MONGODB_ORG_ID=656ddac73586696487910cad | ||
MONGODB_ORG_NAME=Chance's Org - 2023-12-04 | ||
MONGODB_PUBLIC_KEY=ustnsjyf | ||
MONGODB_PRIVATE_KEY=371ac27d-7dc7-40b1-8542-118e1074e52f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<IfModule mod_deflate.c> | ||
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/xml application/xhtml+xml text/javascript application/javascript application/x-javascript | ||
</IfModule> | ||
|
||
<IfModule mod_headers.c> | ||
Header set Content-Range "bytes 0-524287/524288" | ||
</IfModule> | ||
|
||
<IfModule mod_rewrite.c> | ||
RewriteEngine On | ||
|
||
# Ensure that the Facebook Crawler can crawl the privacy policy | ||
RewriteRule ^privacy-policy - [L] | ||
|
||
# Allow list Facebook Crawler user agent strings | ||
SetEnvIfNoCase User-Agent ^facebookexternalhit/1.1 allow_fb_crawler | ||
SetEnvIfNoCase User-Agent ^facebookcatalog/1.0 allow_fb_crawler | ||
SetEnvIfNoCase User-Agent ^FacebookBot/1.0 allow_fb_crawler | ||
|
||
# Allow list Facebook Crawler IP addresses | ||
# Note: Replace the following IP ranges with the current list of IP addresses used by the crawler | ||
Allow from 2a03:2881:16::/48 | ||
Allow from 2a03:2881:17::/48 | ||
Allow from 2a03:2881:18::/48 | ||
Allow from 2a03:2881:19::/48 | ||
Allow from 2a03:2881:1a::/48 | ||
Allow from 2a03:2881:1b::/48 | ||
Allow from 2a03:2881:1c::/48 | ||
Allow from 2a03:2881:1e::/48 | ||
Allow from 2a03:2881:48::/45 | ||
Allow from 2a03:2881:98::/45 | ||
Allow from 2a03:2881:4000::/48 | ||
Allow from 2a03:2881:4001::/48 | ||
Allow from 2a03:2881:4002::/48 | ||
Allow from 2a03:2881:4003::/48 | ||
Allow from 2a03:2881:4004::/48 | ||
Allow from 2a03:2881:4005::/48 | ||
Allow from 2a03:2881:4006::/48 | ||
Allow from 2a03:2881:4007::/48 | ||
Allow from 2a03:2881:4008::/48 | ||
Allow from 2a03:2881:4009::/48 | ||
Allow from 2a03:2881:400a::/48 | ||
Allow from 2a03:2881:400b::/48 | ||
Allow from 2a03:2881:400c::/48 | ||
Allow from 2a03:2881:400d::/48 | ||
Allow from 2a03:2887:ff2c::/48 | ||
Allow from 2a03:2887:ff2d::/48 | ||
Allow from 2a03:2887:ff42::/48 | ||
Allow from 2a03:83e0::/32 | ||
Allow from 2a10:f781:10:cee0::/64 | ||
|
||
Order Deny,Allow | ||
Deny from all | ||
Allow from env=allow_fb_crawler | ||
</IfModule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"polyfillFiles": [ | ||
"static/chunks/polyfills.js" | ||
], | ||
"devFiles": [ | ||
"static/chunks/react-refresh.js" | ||
], | ||
"ampDevFiles": [ | ||
"static/chunks/webpack.js", | ||
"static/chunks/amp.js" | ||
], | ||
"lowPriorityFiles": [ | ||
"static/development/_buildManifest.js", | ||
"static/development/_ssgManifest.js" | ||
], | ||
"rootMainFiles": [], | ||
"pages": { | ||
"/": [ | ||
"static/chunks/webpack.js", | ||
"static/chunks/main.js", | ||
"static/chunks/pages/index.js" | ||
], | ||
"/_app": [ | ||
"static/chunks/webpack.js", | ||
"static/chunks/main.js", | ||
"static/chunks/pages/_app.js" | ||
], | ||
"/_error": [ | ||
"static/chunks/webpack.js", | ||
"static/chunks/main.js", | ||
"static/chunks/pages/_error.js" | ||
] | ||
}, | ||
"ampFirstPages": [] | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"type": "commonjs"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"sortedMiddleware": [], | ||
"middleware": {}, | ||
"functions": {}, | ||
"version": 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
self.__REACT_LOADABLE_MANIFEST={} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"/_app": "pages/_app.js", | ||
"/_error": "pages/_error.js", | ||
"/_document": "pages/_document.js", | ||
"/": "pages/index.js" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.