Files
kjvstudy.org/kjvstudy_org/main.py
T
kennethreitz 920707ca24 Rename package from kjvstudy to kjvstudy_org and refactor for production deployment
Restructures the project for deployment with a more organized package
structure and enhanced web interface. Moves Bible data to package
static directory and adds comprehensive styling, JavaScript features,
and mobile responsiveness.
2025-05-26 12:54:34 -04:00

17 lines
297 B
Python

import uvicorn
from .server import app
def main():
"""Main entry point for the KJV Study application."""
uvicorn.run(
"kjvstudy_org.server:app",
host="0.0.0.0",
port=8000,
reload=True,
log_level="info"
)
if __name__ == "__main__":
main()