From 0338188e943a2547a7d76335ccc7e8cc56630de6 Mon Sep 17 00:00:00 2001 From: Ryan Walters Date: Sun, 23 Nov 2025 01:52:10 -0600 Subject: [PATCH] refactor: reorganize project structure for clarity Move documentation assets to .github/assets/ and backend scripts to pacman-server/scripts/. Updates all references in README and Justfile. --- {assets => .github/assets}/banner.png | Bin {assets => .github/assets}/screenshots/0.png | Bin {assets => .github/assets}/screenshots/1.png | Bin {assets => .github/assets}/screenshots/2.png | Bin {assets => .github/assets}/screenshots/3.png | Bin Justfile | 2 +- README.md | 10 +++++----- {.scripts => pacman-server/scripts}/postgres.ts | 0 8 files changed, 6 insertions(+), 6 deletions(-) rename {assets => .github/assets}/banner.png (100%) rename {assets => .github/assets}/screenshots/0.png (100%) rename {assets => .github/assets}/screenshots/1.png (100%) rename {assets => .github/assets}/screenshots/2.png (100%) rename {assets => .github/assets}/screenshots/3.png (100%) rename {.scripts => pacman-server/scripts}/postgres.ts (100%) diff --git a/assets/banner.png b/.github/assets/banner.png similarity index 100% rename from assets/banner.png rename to .github/assets/banner.png diff --git a/assets/screenshots/0.png b/.github/assets/screenshots/0.png similarity index 100% rename from assets/screenshots/0.png rename to .github/assets/screenshots/0.png diff --git a/assets/screenshots/1.png b/.github/assets/screenshots/1.png similarity index 100% rename from assets/screenshots/1.png rename to .github/assets/screenshots/1.png diff --git a/assets/screenshots/2.png b/.github/assets/screenshots/2.png similarity index 100% rename from assets/screenshots/2.png rename to .github/assets/screenshots/2.png diff --git a/assets/screenshots/3.png b/.github/assets/screenshots/3.png similarity index 100% rename from assets/screenshots/3.png rename to .github/assets/screenshots/3.png diff --git a/Justfile b/Justfile index eac895c..783c5df 100644 --- a/Justfile +++ b/Justfile @@ -52,7 +52,7 @@ push: # Create a postgres container for the server server-postgres: - bun run .scripts/postgres.ts + bun run pacman-server/scripts/postgres.ts # Build the server image server-image: diff --git a/README.md b/README.md index 454595c..2423b55 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@
- Pac-Man Banner Screenshot + Pac-Man Banner Screenshot
# Pac-Man @@ -49,16 +49,16 @@ However, every commit has build artifacts, so you can grab the [latest build art ## Screenshots
- Screenshot 0 - Starting Game + Screenshot 0 - Starting Game

Starting a new game

- Screenshot 1 - Eating Dots + Screenshot 1 - Eating Dots

Pac-Man collecting dots and avoiding ghosts

- Screenshot 2 - Game Over + Screenshot 2 - Game Over

Game over screen after losing all lives

- Screenshot 3 - Debug Mode + Screenshot 3 - Debug Mode

Debug mode showing hitboxes, node graph, and performance details.

diff --git a/.scripts/postgres.ts b/pacman-server/scripts/postgres.ts similarity index 100% rename from .scripts/postgres.ts rename to pacman-server/scripts/postgres.ts