fix(README): update video source
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
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.
|
||||
|
||||
|
||||
@@ -14,3 +14,15 @@ if TARGET.exists():
|
||||
shutil.rmtree(TARGET)
|
||||
|
||||
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!")
|
||||
|
||||
Reference in New Issue
Block a user