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 PORT=3001
# Every App / Gateway settings # Every App / Gateway settings
VITE_APP_ID=super-seo VITE_APP_ID=open-seo
VITE_GATEWAY_URL=https://your-gateway-domain.example.com VITE_GATEWAY_URL=https://your-gateway-domain.example.com
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 GATEWAY_APP_API_TOKEN=your_gateway_app_api_token

View File

@ -1,5 +1,5 @@
{ {
"appId": "super-seo", "appId": "open-seo",
"displayName": "Super Seo", "displayName": "OpenSEO",
"description": "Own your SEO. Research keywords and competitors on your terms.", "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, "private": true,
"sideEffects": false, "sideEffects": false,
"type": "module", "type": "module",

View File

@ -29,7 +29,7 @@ export async function fetchRobotsTxt(origin: string): Promise<RobotsResult> {
const robotsUrl = `${origin}/robots.txt`; const robotsUrl = `${origin}/robots.txt`;
try { try {
const response = await fetch(robotsUrl, { const response = await fetch(robotsUrl, {
headers: { "User-Agent": "SuperSEO-Audit/1.0" }, headers: { "User-Agent": "OpenSEO-Audit/1.0" },
signal: AbortSignal.timeout(10_000), signal: AbortSignal.timeout(10_000),
}); });
@ -108,7 +108,7 @@ async function fetchSitemapDocumentWithRetry(sitemapUrl: string): Promise<{
for (let attempt = 0; attempt <= SITEMAP_RETRIES; attempt++) { for (let attempt = 0; attempt <= SITEMAP_RETRIES; attempt++) {
try { try {
const response = await fetch(normalizedSitemapUrl, { 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), signal: AbortSignal.timeout(SITEMAP_FETCH_TIMEOUT_MS),
}); });

View File

@ -395,7 +395,7 @@ async function crawlPage(
try { try {
const response = await fetch(url, { const response = await fetch(url, {
headers: { headers: {
"User-Agent": "SuperSEO-Audit/1.0", "User-Agent": "OpenSEO-Audit/1.0",
Accept: "text/html,application/xhtml+xml", Accept: "text/html,application/xhtml+xml",
}, },
redirect: "follow", redirect: "follow",

View File

@ -1,6 +1,6 @@
{ {
"$schema": "node_modules/wrangler/config-schema.json", "$schema": "node_modules/wrangler/config-schema.json",
"name": "every-super-seo", "name": "every-open-seo",
"main": "src/server.ts", "main": "src/server.ts",
"compatibility_date": "2025-09-02", "compatibility_date": "2025-09-02",
"compatibility_flags": ["nodejs_compat"], "compatibility_flags": ["nodejs_compat"],
@ -29,14 +29,14 @@
"d1_databases": [ "d1_databases": [
{ {
"binding": "DB", "binding": "DB",
"database_name": "every-super-seo", "database_name": "every-open-seo",
"database_id": "dc7eb9f1-9a43-4d37-9bc9-1293a9200f13", "database_id": "dc7eb9f1-9a43-4d37-9bc9-1293a9200f13",
"migrations_dir": "drizzle", "migrations_dir": "drizzle",
}, },
], ],
"r2_buckets": [ "r2_buckets": [
{ {
"bucket_name": "super-ceo", "bucket_name": "open-seo",
"binding": "R2", "binding": "R2",
}, },
], ],