🎉 Let's go!

This commit is contained in:
Brian Wiborg 2025-09-27 00:29:45 +02:00
commit 6f85f24232
No known key found for this signature in database
24 changed files with 2563 additions and 0 deletions

114
src/ohmyapi/cli.py Normal file
View file

@ -0,0 +1,114 @@
import asyncio
import importlib
import sys
import typer
import uvicorn
from getpass import getpass
from ohmyapi.core import scaffolding, runtime
from pathlib import Path
app = typer.Typer(help="OhMyAPI — Django-flavored FastAPI scaffolding with tightly integrated TortoiseORM.")
banner = """OhMyAPI Shell | Project: {project_name}"""
@app.command()
def startproject(name: str):
"""Create a new OhMyAPI project in the given directory"""
scaffolding.startproject(name)
@app.command()
def startapp(app_name: str, root: str = "."):
"""Create a new app with the given name in your OhMyAPI project"""
scaffolding.startapp(app_name, root)
@app.command()
def serve(root: str = ".", host="127.0.0.1", port=8000):
"""
Run this project in via uvicorn.
"""
project_path = Path(root)
project = runtime.Project(project_path)
app_instance = project.app()
uvicorn.run(app_instance, host=host, port=int(port), reload=False)
@app.command()
def shell(root: str = "."):
"""
Launch an interactive IPython shell with the project and apps loaded.
"""
project_path = Path(root).resolve()
project = runtime.Project(project_path)
try:
from IPython import start_ipython
shell_vars = {
"settings": project.settings,
"project": Path(project_path).resolve(),
}
from traitlets.config.loader import Config
c = Config()
c.TerminalIPythonApp.display_banner = True
c.TerminalInteractiveShell.banner1 = banner.format(**{
"project_name": f"{f'{project.settings.PROJECT_NAME} ' if getattr(project.settings, 'PROJECT_NAME', '') else ''}[{Path(project_path).resolve()}]",
})
c.TerminalInteractiveShell.banner2 = " "
start_ipython(argv=[], user_ns=shell_vars, config=c)
except ImportError:
typer.echo("IPython is not installed. Falling back to built-in Python shell.")
import code
code.interact(local={"settings": project.settings})
@app.command()
def makemigrations(app: str = "*", name: str = "auto", root: str = "."):
"""
Create a DB migration based on your models.
"""
project_path = Path(root).resolve()
project = runtime.Project(project_path)
if app == "*":
for app in project.apps.keys():
asyncio.run(project.makemigrations(app_label=app, name=name))
else:
asyncio.run(project.makemigrations(app_label=app, name=name))
@app.command()
def migrate(app: str = "*", root: str = "."):
"""
Run all DB migrations.
"""
project_path = Path(root).resolve()
project = runtime.Project(project_path)
if app == "*":
for app in project.apps.keys():
asyncio.run(project.migrate(app))
else:
asyncio.run(project.migrate(app))
@app.command()
def createsuperuser(root: str = "."):
project_path = Path(root).resolve()
project = runtime.Project(project_path)
if not project.is_app_installed("ohmyapi_auth"):
print("Auth app not installed! Please add 'ohmyapi_auth' to your INSTALLED_APPS.")
return
import asyncio
import ohmyapi_auth
username = input("Username: ")
password = getpass("Password: ")
user = ohmyapi_auth.models.User(username=username, is_staff=True, is_admin=True)
user.set_password(password)
asyncio.run(project.init_orm())
asyncio.run(user.save())
asyncio.run(project.close_orm())
def main():
app()