refactor: rename Wizamart to Orion across entire codebase
Replace all ~1,086 occurrences of Wizamart/wizamart/WIZAMART/WizaMart with Orion/orion/ORION across 184 files. This includes database identifiers, email addresses, domain references, R2 bucket names, DNS prefixes, encryption salt, Celery app name, config defaults, Docker configs, CI configs, documentation, seed data, and templates. Renames homepage-wizamart.html template to homepage-orion.html. Fixes duplicate file_pattern key in api.yaml architecture rule. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -37,7 +37,7 @@ class MerchantSubscription(Base, TimestampMixin):
|
||||
|
||||
Example:
|
||||
Merchant "Boucherie Luxembourg" subscribes to:
|
||||
- Wizamart OMS (Professional tier)
|
||||
- Orion OMS (Professional tier)
|
||||
- Loyalty+ (Essential tier)
|
||||
|
||||
Their stores inherit features from the merchant's subscription.
|
||||
|
||||
@@ -119,7 +119,7 @@ async def signup_success_page(
|
||||
Shown after successful account creation.
|
||||
"""
|
||||
context = get_platform_context(request, db)
|
||||
context["page_title"] = "Welcome to Wizamart!"
|
||||
context["page_title"] = "Welcome to Orion!"
|
||||
context["store_code"] = store_code
|
||||
|
||||
return templates.TemplateResponse(
|
||||
|
||||
@@ -324,7 +324,7 @@ function storeInvoices() {
|
||||
|
||||
try {
|
||||
// Get the token for authentication
|
||||
const token = localStorage.getItem('wizamart_token') || localStorage.getItem('store_token');
|
||||
const token = localStorage.getItem('orion_token') || localStorage.getItem('store_token');
|
||||
if (!token) {
|
||||
throw new Error('Not authenticated');
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
{# Standalone Pricing Page #}
|
||||
{% extends "platform/base.html" %}
|
||||
|
||||
{% block title %}{{ _("cms.platform.pricing.title") }} - Wizamart{% endblock %}
|
||||
{% block title %}{{ _("cms.platform.pricing.title") }} - Orion{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div x-data="{ annual: false }" class="py-16 lg:py-24">
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
{# Multi-step Signup Wizard #}
|
||||
{% extends "platform/base.html" %}
|
||||
|
||||
{% block title %}Start Your Free Trial - Wizamart{% endblock %}
|
||||
{% block title %}Start Your Free Trial - Orion{% endblock %}
|
||||
|
||||
{% block extra_head %}
|
||||
{# Stripe.js for payment #}
|
||||
|
||||
Reference in New Issue
Block a user