Files
computer/libs/python/computer-server/run_server.py
2025-10-22 11:35:31 -07:00

18 lines
382 B
Python
Executable File

#!/usr/bin/env python
"""
Entrypoint script for the Computer Server.
This script provides a simple way to start the Computer Server from the command line
or using a launch configuration in an IDE.
Usage:
python run_server.py [--host HOST] [--port PORT] [--log-level LEVEL]
"""
import sys
from computer_server.cli import main
if __name__ == "__main__":
sys.exit(main())