forked from Tiny-Walnut-Games/the-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_stat7.py
More file actions
31 lines (25 loc) · 766 Bytes
/
run_stat7.py
File metadata and controls
31 lines (25 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python3
print("🚀 STAT7 System Launcher")
print("=" * 25)
print()
# Just run the basic checks without subprocess
import sys
from pathlib import Path
current_dir = Path.cwd()
print(f"Working directory: {current_dir}")
required_files = ["stat7wsserve.py", "stat7threejs.html"]
all_good = True
for file in required_files:
if Path(file).exists():
print(f"✅ Found: {file}")
else:
print(f"❌ Missing: {file}")
all_good = False
if all_good:
print("\n✅ All STAT7 files present!")
print("\nNext steps:")
print("1. Run: python stat7wsserve.py")
print("2. Run: python simple_web_server.py")
print("3. Open: http://localhost:8000/stat7threejs.html")
else:
print("\n❌ Some files are missing!")