mirror of https://github.com/Nezreka/SoulSync.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
643 B
18 lines
643 B
#!/usr/bin/env python3
|
|
"""Reports basic system info — useful for debugging Docker setups."""
|
|
import os
|
|
import platform
|
|
import shutil
|
|
|
|
print(f"Platform: {platform.system()} {platform.release()}")
|
|
print(f"Python: {platform.python_version()}")
|
|
print(f"Working Dir: {os.getcwd()}")
|
|
|
|
# Disk usage for common SoulSync paths
|
|
for path in ['/app/downloads', '/app/Transfer', '/app/data', './downloads', './Transfer']:
|
|
if os.path.exists(path):
|
|
usage = shutil.disk_usage(path)
|
|
free_gb = usage.free / (1024**3)
|
|
total_gb = usage.total / (1024**3)
|
|
print(f"Disk {path}: {free_gb:.1f} GB free / {total_gb:.1f} GB total")
|