Merge pull request #1 from bensenescu/262_update_open_seo
Change naming to OpenSEO
This commit is contained in:
commit
b0c893dea3
@ -2,7 +2,7 @@
|
||||
PORT=3001
|
||||
|
||||
# Every App / Gateway settings
|
||||
VITE_APP_ID=super-seo
|
||||
VITE_APP_ID=open-seo
|
||||
VITE_GATEWAY_URL=https://your-gateway-domain.example.com
|
||||
GATEWAY_URL=https://your-gateway-domain.example.com
|
||||
GATEWAY_APP_API_TOKEN=your_gateway_app_api_token
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
{
|
||||
"appId": "super-seo",
|
||||
"displayName": "Super Seo",
|
||||
"appId": "open-seo",
|
||||
"displayName": "OpenSEO",
|
||||
"description": "Own your SEO. Research keywords and competitors on your terms.",
|
||||
}
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "super-seo",
|
||||
"name": "open-seo",
|
||||
"private": true,
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
|
||||
@ -29,7 +29,7 @@ export async function fetchRobotsTxt(origin: string): Promise<RobotsResult> {
|
||||
const robotsUrl = `${origin}/robots.txt`;
|
||||
try {
|
||||
const response = await fetch(robotsUrl, {
|
||||
headers: { "User-Agent": "SuperSEO-Audit/1.0" },
|
||||
headers: { "User-Agent": "OpenSEO-Audit/1.0" },
|
||||
signal: AbortSignal.timeout(10_000),
|
||||
});
|
||||
|
||||
@ -108,7 +108,7 @@ async function fetchSitemapDocumentWithRetry(sitemapUrl: string): Promise<{
|
||||
for (let attempt = 0; attempt <= SITEMAP_RETRIES; attempt++) {
|
||||
try {
|
||||
const response = await fetch(normalizedSitemapUrl, {
|
||||
headers: { "User-Agent": "SuperSEO-Audit/1.0" },
|
||||
headers: { "User-Agent": "OpenSEO-Audit/1.0" },
|
||||
signal: AbortSignal.timeout(SITEMAP_FETCH_TIMEOUT_MS),
|
||||
});
|
||||
|
||||
|
||||
@ -395,7 +395,7 @@ async function crawlPage(
|
||||
try {
|
||||
const response = await fetch(url, {
|
||||
headers: {
|
||||
"User-Agent": "SuperSEO-Audit/1.0",
|
||||
"User-Agent": "OpenSEO-Audit/1.0",
|
||||
Accept: "text/html,application/xhtml+xml",
|
||||
},
|
||||
redirect: "follow",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"$schema": "node_modules/wrangler/config-schema.json",
|
||||
"name": "every-super-seo",
|
||||
"name": "every-open-seo",
|
||||
"main": "src/server.ts",
|
||||
"compatibility_date": "2025-09-02",
|
||||
"compatibility_flags": ["nodejs_compat"],
|
||||
@ -29,14 +29,14 @@
|
||||
"d1_databases": [
|
||||
{
|
||||
"binding": "DB",
|
||||
"database_name": "every-super-seo",
|
||||
"database_name": "every-open-seo",
|
||||
"database_id": "dc7eb9f1-9a43-4d37-9bc9-1293a9200f13",
|
||||
"migrations_dir": "drizzle",
|
||||
},
|
||||
],
|
||||
"r2_buckets": [
|
||||
{
|
||||
"bucket_name": "super-ceo",
|
||||
"bucket_name": "open-seo",
|
||||
"binding": "R2",
|
||||
},
|
||||
],
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user