Guild website for Aztecs — an established Horde guild on Al'Akir since 2005
aztecs.se · Vue 3 · Vite · Warcraft Logs · GitHub Pages
Raiding, Mythic+, and good times. The site features live raid progression pulled from Warcraft Logs at build time, historical kill screenshots with rosters, guild info, and a contact page.
Key features:
- Live raid progression — per-boss kill status, pull counts, best %, and full kill rosters fetched from the WCL API
- Scheduled deploys — auto-deploys after raid nights (Wed/Sun) to keep progression fresh
- Kill archive — screenshot cards with date, roster, and class-colored player names
- Splash text — rotating guild inside jokes on the header
git clone git@github.com:kaankaraoglu/aztecs.github.io.git
cd aztecs.github.io
npm ci
npm run dev| Command | Description |
|---|---|
npm run dev |
Start dev server |
npm run build |
Fetch WCL data + production build |
npm test |
Run tests (Vitest) |
npm run lint |
ESLint with auto-fix |
npm run format |
Prettier format all files |
WCL credentials are optional for local dev (progression falls back to static data):
| Variable | Required | Description |
|---|---|---|
WCL_CLIENT_ID |
Deploy only | Warcraft Logs OAuth client ID |
WCL_CLIENT_SECRET |
Deploy only | Warcraft Logs OAuth client secret |
VITE_FIREBASE_* |
Deploy only | Firebase Analytics config (7 vars) |
src/
├── components/ # Reusable components (HeaderView, KillCard, etc.)
├── composables/ # useRaiderIO — reads WCL build-time data
├── data/ # Static kills, progression fallback, WCL JSON
├── views/ # Route-level pages (Home, Raiding, Achievements, Contact)
├── assets/styles/ # SCSS variables, shared partials
└── router/ # Vue Router with per-route titles
scripts/
└── fetch-wcl-data.js # Build-time WCL fetcher (runs as prebuild)
Build time: WCL API → fetch-wcl-data.js → wcl-progression.json
Runtime: wcl-progression.json → useRaiderIO() → RaidProgressionBox
Fallback: progression.js (static) → useRaiderIO() (if WCL data empty)
| Workflow | Trigger | What it does |
|---|---|---|
| PR Checks | Pull requests | Lint, test, build (parallel) |
| Build & Deploy | Push to main, schedule, manual | Fetch WCL → build → deploy to gh-pages |
The deploy workflow runs on a schedule: Wed 23:00 CET, Sun 23:00 CET (after raids), and daily 06:00 CET.
Pre-commit hooks run lint-staged (Prettier + ESLint) automatically. CI enforces zero warnings.
npm ci # Install dependencies (hooks activate automatically)
npm run dev # Start developing
npm test # Run tests before pushing