Initial commit. skeleton CLI and tests.

This commit is contained in:
evilchili
2022-11-19 15:14:12 -08:00
parent 15cfc5cc12
commit e28a2ffb95
8 changed files with 318 additions and 0 deletions
View File
+46
View File
@@ -0,0 +1,46 @@
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()
+8
View File
@@ -0,0 +1,8 @@
from bottle import Bottle
server = Bottle()
@server.route('/')
def index():
return "Groovy."