diff --git a/Dockerfile b/Dockerfile index 26808ab..2ab3b01 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,5 +34,5 @@ COPY --from=builder /app/.venv /app/.venv # Copy application code COPY . . -# Run the application using FastAPI CLI -CMD ["fastapi", "run", "kjvstudy_org.server:app", "--host", "0.0.0.0", "--port", "8000"] \ No newline at end of file +# Run the application using uvicorn directly +CMD ["uvicorn", "kjvstudy_org.server:app", "--host", "0.0.0.0", "--port", "8000"] \ No newline at end of file diff --git a/kjvstudy_org/templates/base.html b/kjvstudy_org/templates/base.html index 0214d39..65d8e1f 100644 --- a/kjvstudy_org/templates/base.html +++ b/kjvstudy_org/templates/base.html @@ -3,8 +3,42 @@
-