commit 36d0023e5ba8ece09799b287b9c214763284e75e
parent b539ea085869998dc2f7788a8981d73b468469a3
Author: Hunter
Date: Mon, 13 Apr 2026 11:53:11 -0400
host.py -> serve.py; update readme
Diffstat:
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/readme.md b/readme.md
@@ -45,14 +45,14 @@ hits different, right?<br><br>
- run `./scan.py` to generate `tracks.json`, which defines the tracks available to the player.
- after running `./scan.py` once, you can manually edit `tracks.json` to refine your mix.
-3. **test it**
- - run `./host.py` to start a local HTTP server for testing. you can scan the QR code printed to the terminal to test the app from any device on your local network.
+3. **serve it**
+ - run `./serve.py` to start a local HTTP server for testing. you can scan the QR code printed to the terminal to test the app from any device on your local network.
4. **build it**
- run `./build.py` and follow the interactive prompts to generate `manifest.json` and `service-worker.js`, which enable PWA installation and offline functionality.
5. **ship it**
- - upload the entire project directory to any web host with HTTPS support (GitHub Pages, Neocities, AWS S3, etc.)
+ - upload the entire project directory to any static web host with HTTPS support (GitHub Pages, Neocities, AWS S3, etc.)
6. **share it**
- send the hosted URL to your recipient and walk them through the installation process:
diff --git a/readme_images/lock_screen.jpeg b/readme_images/lock_screen.jpeg
Binary files differ.
diff --git a/rip.py b/rip.py
@@ -364,7 +364,7 @@ def rip_cd():
print(f"\nTracks saved to: {MIX_DIR}")
print("\nNext steps:")
print(" 1. Run scan.py to generate tracks.json with metadata")
- print(" 2. Run host.py to test your mixtape locally")
+ print(" 2. Run serve.py to test your mixtape locally")
# Eject the CD
print("\nEjecting CD...")
diff --git a/host.py b/serve.py