Remove all mdbible references from codebase - updated README, backend error message, and Dockerfile

This commit is contained in:
Ryderjj89
2025-09-29 09:45:36 -04:00
parent 968187ab8c
commit 1a00b0715b
2 changed files with 0 additions and 10 deletions

View File

@@ -314,7 +314,6 @@ For issues and questions:
## Acknowledgments
- **Bible data source** - [mdbible](https://github.com/lguenth/mdbible) - Markdown formatted Bible text
- **React** - Frontend framework
- **Node.js** - Backend runtime
- **Docker** - Containerization platform

View File

@@ -2,9 +2,6 @@ FROM node:18-alpine
WORKDIR /app
# Install git for cloning the bible repository
RUN apk add --no-cache git
# Copy package files
COPY package*.json ./
@@ -14,12 +11,6 @@ RUN npm ci --only=production
# Copy application code
COPY . .
# Clone ESV Bible markdown repository
RUN git clone https://github.com/lguenth/mdbible.git /tmp/mdbible && \
mkdir -p /app/bible-data && \
cp -r /tmp/mdbible/by_chapter/* /app/bible-data/ && \
rm -rf /tmp/mdbible
# Expose port
EXPOSE 3000