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:
@@ -6,12 +6,12 @@ Landing pages have been created for three stores with different templates.
|
||||
|
||||
## 📍 Test URLs
|
||||
|
||||
### 1. WizaMart - Modern Template
|
||||
### 1. Orion - Modern Template
|
||||
**Landing Page:**
|
||||
- http://localhost:8000/stores/wizamart/
|
||||
- http://localhost:8000/stores/orion/
|
||||
|
||||
**Shop Page:**
|
||||
- http://localhost:8000/stores/wizamart/shop/
|
||||
- http://localhost:8000/stores/orion/shop/
|
||||
|
||||
**What to expect:**
|
||||
- Full-screen hero section with animations
|
||||
@@ -93,8 +93,8 @@ db.close()
|
||||
"
|
||||
```
|
||||
|
||||
Then visit: http://localhost:8000/stores/wizamart/
|
||||
- Should automatically redirect to: http://localhost:8000/stores/wizamart/shop/
|
||||
Then visit: http://localhost:8000/stores/orion/
|
||||
- Should automatically redirect to: http://localhost:8000/stores/orion/shop/
|
||||
|
||||
---
|
||||
|
||||
@@ -111,17 +111,17 @@ Or programmatically:
|
||||
```python
|
||||
from scripts.create_landing_page import create_landing_page
|
||||
|
||||
# Change WizaMart to default template
|
||||
create_landing_page('wizamart', template='default')
|
||||
# Change Orion to default template
|
||||
create_landing_page('orion', template='default')
|
||||
|
||||
# Change to minimal
|
||||
create_landing_page('wizamart', template='minimal')
|
||||
create_landing_page('orion', template='minimal')
|
||||
|
||||
# Change to full
|
||||
create_landing_page('wizamart', template='full')
|
||||
create_landing_page('orion', template='full')
|
||||
|
||||
# Change back to modern
|
||||
create_landing_page('wizamart', template='modern')
|
||||
create_landing_page('orion', template='modern')
|
||||
```
|
||||
|
||||
---
|
||||
@@ -130,7 +130,7 @@ create_landing_page('wizamart', template='modern')
|
||||
|
||||
| Store | Subdomain | Template | Landing Page URL |
|
||||
|--------|-----------|----------|------------------|
|
||||
| WizaMart | wizamart | **modern** | http://localhost:8000/stores/wizamart/ |
|
||||
| Orion | orion | **modern** | http://localhost:8000/stores/orion/ |
|
||||
| Fashion Hub | fashionhub | **minimal** | http://localhost:8000/stores/fashionhub/ |
|
||||
| The Book Store | bookstore | **full** | http://localhost:8000/stores/bookstore/ |
|
||||
|
||||
@@ -146,7 +146,7 @@ sqlite3 letzshop.db "SELECT id, store_id, slug, title, template, is_published FR
|
||||
|
||||
Expected output:
|
||||
```
|
||||
8|1|landing|Welcome to WizaMart|modern|1
|
||||
8|1|landing|Welcome to Orion|modern|1
|
||||
9|2|landing|Fashion Hub - Style & Elegance|minimal|1
|
||||
10|3|landing|The Book Store - Your Literary Haven|full|1
|
||||
```
|
||||
@@ -180,7 +180,7 @@ Expected output:
|
||||
|
||||
## ✅ Success Checklist
|
||||
|
||||
- [ ] WizaMart landing page loads (modern template)
|
||||
- [ ] Orion landing page loads (modern template)
|
||||
- [ ] Fashion Hub landing page loads (minimal template)
|
||||
- [ ] Book Store landing page loads (full template)
|
||||
- [ ] "Shop Now" buttons work correctly
|
||||
|
||||
Reference in New Issue
Block a user