fix(README): update video source

This commit is contained in:
2026-01-02 01:24:16 -06:00
parent b15e9bb7e1
commit 9205006949
2 changed files with 13 additions and 1 deletions

View File

@@ -2,7 +2,7 @@
A [Reticulum MeshChat](https://github.com/liamcottle/reticulum-meshchat) fork from the future. A [Reticulum MeshChat](https://github.com/liamcottle/reticulum-meshchat) fork from the future.
<video src="https://strg.0rbitzer0.net/u/62926a2a-0a9a-4f44-a5f6-000dd60deac1.mp4" controls="controls" style="max-width: 100%;"></video> <video src="showcase/showcase-video-call.mp4" controls="controls" style="max-width: 100%;"></video>
This project is seperate from the original Reticulum MeshChat project, and is not affiliated with the original project. This project is seperate from the original Reticulum MeshChat project, and is not affiliated with the original project.

View File

@@ -14,3 +14,15 @@ if TARGET.exists():
shutil.rmtree(TARGET) shutil.rmtree(TARGET)
TARGET.mkdir(parents=True, exist_ok=True) TARGET.mkdir(parents=True, exist_ok=True)
# Copy built assets from root public/ to meshchatx/public/
SOURCE = Path("public")
if SOURCE.exists():
print(f"Copying assets from {SOURCE} to {TARGET}...")
for item in SOURCE.iterdir():
if item.is_dir():
shutil.copytree(item, TARGET / item.name, dirs_exist_ok=True)
else:
shutil.copy2(item, TARGET / item.name)
else:
print(f"Warning: Source directory {SOURCE} not found!")