Change naming to OpenSEO

This commit is contained in:
Ben Senescu 2026-02-27 14:57:01 -05:00
parent 86341b2608
commit 4b0d9a4ca5
6 changed files with 10 additions and 10 deletions

View File

@ -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

View File

@ -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.",
}

View File

@ -1,5 +1,5 @@
{
"name": "super-seo",
"name": "open-seo",
"private": true,
"sideEffects": false,
"type": "module",

View File

@ -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),
});

View File

@ -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",

View File

@ -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",
},
],