chore: update project branding from SaaS-PDF to Dociva
- Updated robots.txt to reflect new site name and sitemap URL. - Modified sitemap.xml to change all URLs from saas-pdf.com to dociva.io. - Changed storage key for site assistant in SiteAssistant.tsx. - Updated SEOHead.tsx to change site name in meta tags. - Translated app name and related text in Arabic, English, and French JSON files. - Updated contact email in ContactPage.tsx, PrivacyPage.tsx, and TermsPage.tsx. - Changed internal admin page title to reflect new branding. - Updated pricing page meta description to reference Dociva. - Adjusted Nginx configuration for new domain. - Modified deployment script to reflect new branding. - Updated sitemap generation script to use new domain.
This commit is contained in:
@@ -4,8 +4,8 @@ generate_sitemap.py
|
||||
Generates sitemap.xml for SEO from the full route inventory.
|
||||
|
||||
Usage:
|
||||
python scripts/generate_sitemap.py --domain https://saas-pdf.com
|
||||
python scripts/generate_sitemap.py --domain https://saas-pdf.com --output frontend/public/sitemap.xml
|
||||
python scripts/generate_sitemap.py --domain https://dociva.io
|
||||
python scripts/generate_sitemap.py --domain https://dociva.io --output frontend/public/sitemap.xml
|
||||
# Or set SITE_DOMAIN env var and omit --domain
|
||||
"""
|
||||
|
||||
@@ -130,7 +130,7 @@ def generate_sitemap(domain: str) -> str:
|
||||
def main():
|
||||
parser = argparse.ArgumentParser(description='Generate sitemap.xml')
|
||||
parser.add_argument('--domain', type=str, default=os.environ.get('SITE_DOMAIN', ''),
|
||||
help='Site domain (e.g. https://saas-pdf.com). Falls back to SITE_DOMAIN env var.')
|
||||
help='Site domain (e.g. https://dociva.io). Falls back to SITE_DOMAIN env var.')
|
||||
parser.add_argument('--output', type=str, default='frontend/public/sitemap.xml', help='Output file path')
|
||||
args = parser.parse_args()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user