47 lines
892 B
Python
47 lines
892 B
Python
import logging
|
|
import os
|
|
import typer
|
|
|
|
from dotenv import load_dotenv
|
|
from groove import ondemand
|
|
|
|
|
|
app = typer.Typer()
|
|
|
|
|
|
@app.command()
|
|
def server(
|
|
host: str = typer.Argument(
|
|
'0.0.0.0',
|
|
help="bind address",
|
|
),
|
|
port: int = typer.Argument(
|
|
2323,
|
|
help="bind port",
|
|
),
|
|
debug: bool = typer.Option(
|
|
False,
|
|
help='Enable debugging output'
|
|
),
|
|
):
|
|
"""
|
|
Start the Groove on Demand playlsit server.
|
|
"""
|
|
load_dotenv()
|
|
|
|
print("Starting Groove On Demand...")
|
|
|
|
debug = os.getenv('DEBUG', None)
|
|
logging.basicConfig(format='%(asctime)s - %(message)s', level=logging.DEBUG if debug else logging.INFO)
|
|
ondemand.server.run(
|
|
host=os.getenv('HOST', host),
|
|
port=os.getenv('PORT', port),
|
|
debug=debug,
|
|
server='paste',
|
|
quiet=True
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app()
|