From 7492cd58a42c7a9569eaf29a9cae10394e92367b Mon Sep 17 00:00:00 2001 From: samuel Date: Fri, 5 Jun 2026 10:40:21 +0000 Subject: [PATCH 1/3] Initial commit --- README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..de1127d --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# website + +The Fat Dragon website — static HTML \ No newline at end of file From 39b102b4598035fc1c326f52f10e500b3794849c Mon Sep 17 00:00:00 2001 From: Samuel McCann Date: Fri, 5 Jun 2026 10:40:57 +0000 Subject: [PATCH 2/3] initial: The Fat Dragon website from Lovable draft --- .forgejo/workflows/deploy.yml | 23 ++ index.html | 749 ++++++++++++++++++++++++++++++++++ 2 files changed, 772 insertions(+) create mode 100644 .forgejo/workflows/deploy.yml create mode 100644 index.html diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml new file mode 100644 index 0000000..1cb5903 --- /dev/null +++ b/.forgejo/workflows/deploy.yml @@ -0,0 +1,23 @@ +on: + push: + branches: [main] + +jobs: + deploy: + runs-on: docker + steps: + - uses: actions/checkout@v4 + + - name: Restart Nomad allocation + env: + NOMAD_ADDR: http://127.0.0.1:4646 + NOMAD_TOKEN: ${{ secrets.NOMAD_TOKEN }} + run: | + set -e + ALLOC_ID=$(curl -sf -H "X-Nomad-Token: $NOMAD_TOKEN" \ + "$NOMAD_ADDR/v1/jobs/thefatdragon/allocations" \ + | grep -o '"ID":"[^"]*"' | head -1 | cut -d'"' -f4) + echo "Restarting allocation: $ALLOC_ID" + curl -sf -X POST -H "X-Nomad-Token: $NOMAD_TOKEN" \ + "$NOMAD_ADDR/v1/client/allocation/$ALLOC_ID/restart" + echo "Deploy triggered." diff --git a/index.html b/index.html new file mode 100644 index 0000000..d032830 --- /dev/null +++ b/index.html @@ -0,0 +1,749 @@ + + + + + +The Fat Dragon — Ashbourne, Co. Meath + + + + + + + + + + + +
+
+
+
Coming Soon
+ 🐉 +

The Fat Dragon

+

Ashbourne · Co. Meath · Ireland

+

+ A brand-new game shop is coming to Ashbourne — retro arcade cabinets, + tabletop strategy, D&D campaigns, and a space built for every kind of player. +

+ Opening July 2026 · D&D Bookings Open Now + +
+
+ + +
+
+
+
+
+
+
FAT DRAGON
+
Arcade · Est. 2026
+
Insert Coin to Continue
+
+
+
+
+
+
+
+
+
+
+
+ +

Play Against Friends and Rivals

+

+ Relive the golden age of gaming with our hand-picked collection of classic + arcade cabinets. Challenge friends head-to-head or prove yourself against + the machine — the high score board awaits. +

+
+ Mortal Kombat II + Mortal Kombat III + Street Fighter II + Street Fighter III + Time Crisis + Marvel vs. Capcom + Pac-Man + Space Invaders +
+
+
+
+
+ + +
+
+
+
+
+ 🎲 +

Board & Card Games

+
+
+
+ +

Gather Around the Table

+

+ From grand strategy to fast-paced card battles, our library has something + for every group. Bring your crew or meet new challengers — the table is always open. +

+
+
+
Strategy Games
+
    +
  • Catan
  • +
  • Ticket to Ride
  • +
  • Village
  • +
  • Dune
  • +
+
+
+
Card Games
+
    +
  • Magic: The Gathering
  • +
  • Pokémon TCG
  • +
  • Yu-Gi-Oh!
  • +
+
+
+
+
+
+
+ + +
+
+
Events & Tournaments
+

Compete, Collaborate, Celebrate

+

+ Regular tournaments, campaign nights, and community events are coming. + Full schedule launches with our opening in July 2026 — stay tuned. +

+
+ D&D Campaign Nights + Fighting Game Tournaments + Pokémon TCG Events + Board Game Socials + Magic: The Gathering +
+
+
+ + + + + + From ca14ddc8b246de2333ba9e3b37a1c33b91229eea Mon Sep 17 00:00:00 2001 From: Samuel McCann Date: Fri, 5 Jun 2026 10:41:57 +0000 Subject: [PATCH 3/3] ci: add Nomad auto-deploy workflow on push to main --- .forgejo/workflows/deploy.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 1cb5903..88954cf 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -10,14 +10,16 @@ jobs: - name: Restart Nomad allocation env: - NOMAD_ADDR: http://127.0.0.1:4646 + NOMAD_ADDR: ${{ secrets.NOMAD_ADDR }} NOMAD_TOKEN: ${{ secrets.NOMAD_TOKEN }} run: | set -e - ALLOC_ID=$(curl -sf -H "X-Nomad-Token: $NOMAD_TOKEN" \ + ALLOC_ID=$(curl -sf \ + -H "X-Nomad-Token: $NOMAD_TOKEN" \ "$NOMAD_ADDR/v1/jobs/thefatdragon/allocations" \ | grep -o '"ID":"[^"]*"' | head -1 | cut -d'"' -f4) echo "Restarting allocation: $ALLOC_ID" - curl -sf -X POST -H "X-Nomad-Token: $NOMAD_TOKEN" \ + curl -sf -X POST \ + -H "X-Nomad-Token: $NOMAD_TOKEN" \ "$NOMAD_ADDR/v1/client/allocation/$ALLOC_ID/restart" - echo "Deploy triggered." + echo "Deploy triggered — nginx will re-fetch index.html from git."