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
|
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
|
||||||
|
|||||||
@ -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.",
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "super-seo",
|
"name": "open-seo",
|
||||||
"private": true,
|
"private": true,
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
@ -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),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@ -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",
|
||||||
|
|||||||
@ -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",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user