mirror of
https://github.com/kennethreitz/kjvstudy.org.git
synced 2026-06-05 23:00:16 +00:00
920707ca24
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.
17 lines
297 B
Python
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() |