- Rename project from 'ESV Bible' to 'The Bible' - Implement version selection dropdown in homepage header - Add support for multiple Bible versions: * ESV (English Standard Version) - from mdbible * NKJV (New King James Version) - from local NKJV/ directory - Update all API endpoints to accept version parameter (?version=esv|?version=nkjv) - Add version-aware favorites system that stores and displays Bible version (e.g., 'Genesis 1:1 (ESV)') - Update database schema to include version column in favorites table - Maintain backward compatibility with existing data - Update Docker configuration and documentation
16 lines
275 B
YAML
16 lines
275 B
YAML
services:
|
|
the-bible:
|
|
image: ryderjj89/the-bible:latest
|
|
container_name: the-bible
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- data:/app/backend/data
|
|
environment:
|
|
- NODE_ENV=production
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
data:
|
|
driver: local
|