Live site: ajmarroquin.github.io/nyc-swu
A single-page community hub for Star Wars Unlimited weekly events and tournaments in New York City.
All data lives in the data/ folder as JSON files. You do not need to edit index.html — just update the JSON and the site will reflect the changes automatically.
An array of weekly events. Each entry:
{
"store": "Store Name",
"days": [3, 5],
"time": "7:00 PM",
"fee": "$15 Constructed",
"maps": "https://maps.google.com/?q=..."
}| Field | Type | Description |
|---|---|---|
store |
string | Store name as displayed on the site |
days |
number[] | Day(s) of the week — 0 = Sunday, 1 = Monday, ... 6 = Saturday |
time |
string | Start time (e.g. "7:00 PM") |
fee |
string | Entry fee or format info (e.g. "$15", "Free", "Rotating") |
maps |
string | Google Maps link to the venue |
An array of one-time events (PQs, Sectors, Regionals, Galactic). Each entry:
{
"tier": "planetary",
"label": "Planetary",
"name": "Hex & Co — Union Square",
"loc": "NYC, New York",
"date": "2026-04-12",
"fmt": "eternal"
}| Field | Type | Description |
|---|---|---|
tier |
string | One of: planetary, sector, regional, galactic — controls the color/badge |
label |
string | Display label (e.g. "Planetary", "Sector") |
name |
string | Event or store name |
loc |
string | City/state location |
date |
string | Date in YYYY-MM-DD format |
fmt |
string | Format: "premier", "eternal", "limited", or "" if unknown |
- Clone the repo
- Create a new branch (
git checkout -b my-update) - Edit the JSON file(s) in
data/ - Commit and push your branch
- Open a pull request
The main branch is protected — changes require a PR.