22 lines
541 B
Python
22 lines
541 B
Python
#!/usr/bin/env python3
|
|
"""
|
|
VodKeeper Launcher
|
|
Simple script to run the VodKeeper application
|
|
"""
|
|
|
|
import sys
|
|
import os
|
|
|
|
# Add current directory to Python path
|
|
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
try:
|
|
from vodkeeper import main
|
|
print("Starting VodKeeper...")
|
|
main()
|
|
except ImportError as e:
|
|
print(f"Error importing VodKeeper: {e}")
|
|
print("Make sure all dependencies are installed:")
|
|
print("pip install -r requirements.txt")
|
|
except Exception as e:
|
|
print(f"Error running VodKeeper: {e}") |