kennethreitz 1f5a237695 Add 98 comprehensive verse commentaries across Bible
Large-scale commentary addition spanning both testaments:

Pentateuch & History: Deuteronomy 3:9, 4:10, 11:21, 16:19, 22:29, 28:32, 30:7
Joshua 4:2, 10:13, 10:36, 19:36, 22:19; Judges 8:14, 19:9
Numbers 3:17, 15:3, 16:31, 18:24, 27:4, 33:48; Ezra 2:5, 10:20

Wisdom & Poetry: Job 2:13, 5:13, 10:15, 12:1, 14:6, 16:19, 17:2, 20:2, 37:1
Psalms 18:31, 22:12, 24:1, 34:15, 38:20, 44:11, 48:1, 78:48, 81:14, 119:85,
119:100, 137:8, 144:11; Proverbs 2:18, 4:11, 10:5, 13:24, 20:21
Ecclesiastes 2:20, 8:17, 10:14; Song of Solomon 1:11, 5:13

Prophets: Isaiah 1:14, 26:21, 37:1, 47:11, 48:6, 57:15
Jeremiah 9:23, 14:9, 22:3, 31:13, 36:25, 49:13
Ezekiel 4:14, 5:6, 7:27, 13:6, 14:18, 18:22, 27:28, 34:10, 34:14, 36:7, 38:3, 40:49
Daniel 9:24; Hosea 8:9; Jonah 1:7, 1:11; Micah 5:1; Nahum 3:15; Amos 4:10
Zechariah 9:12

Gospels & Acts: Matthew 1:5, 8:24, 8:34, 21:12, 23:7; Mark 14:25
Luke 6:19, 8:23, 8:24, 10:26, 12:19, 24:26
John 4:24, 6:56, 11:25, 13:37, 14:24, 17:12, 18:40, 19:15, 20:12
Acts 2:40, 4:5, 4:27, 9:18, 9:42, 11:5, 14:25, 15:20, 20:12, 21:29, 22:4, 22:24, 26:27

Epistles: Hebrews 2:15, 9:3, 12:16; 1 John 4:11

Each with deep theological analysis, Hebrew/Greek word studies,
historical context, and 5 reflection questions.

Coverage: ~40% of Bible (12,100+ verses)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-29 01:13:35 -05:00
2025-11-22 12:10:55 -05:00
2025-11-14 19:24:08 -05:00
2025-11-27 22:26:19 -05:00
2025-11-27 22:26:19 -05:00

KJV Study

A comprehensive web application for deep study of the King James Bible, featuring original language tools, extensive theological resources, and classical scholarly presentation.

Live Site: kjvstudy.org

Quick Start - Run It Yourself

The easiest way to run KJV Study locally is with Docker:

# Clone the repository
git clone https://github.com/kennethreitz/kjvstudy.org.git
cd kjvstudy.org

# Start with Docker Compose
docker compose up

Then open your browser to http://localhost:8000

That's it! The application will run with all features enabled.


Features

Bible Reading & Navigation

  • Complete KJV Text - All 66 books, 1,189 chapters, 31,102 verses
  • Fast Search - Full-text search with concordance functionality
  • Cross-References - Comprehensive verse cross-referencing throughout Scripture
  • Verse Linking - Automatic URL generation for easy sharing and bookmarking
  • Random Verse - Discover Scripture serendipitously
  • Verse of the Day - Daily curated verses with reflection questions

Study Tools

Interlinear Bible

Study Guides

Comprehensive 8-section guides with extensive Scripture references:

Biblical Resources

People & Characters:

Themes & Topics:

Historical Context:

  • Biblical Timeline - From Creation through the early Church
  • Biblical Maps - Geographic context for biblical narratives
  • Family Tree - Genealogies from Adam through biblical history with searchable lineages

Design & User Experience

Tufte CSS Styling:

  • Classical typography with serif fonts for optimal readability
  • Sidenotes and margin notes for supplementary information
  • High contrast and generous white space
  • Responsive design that adapts to all screen sizes

Performance:

  • Aggressive caching for instant page loads
  • Optimized for Fly.io deployment
  • Always-on configuration eliminates cold starts
  • Lazy loading of interlinear data

Accessibility:

  • Semantic HTML structure
  • Clear heading hierarchy
  • Keyboard navigation support
  • High contrast text

Tech Stack

Backend:

  • FastAPI - Modern, high-performance Python web framework
  • Python 3.13 - Latest Python with performance improvements
  • Custom Bible Class - Optimized KJV text access with 31,102 verses from 1769 Cambridge edition
  • Jinja2 - Server-side templating with custom filters

Frontend:

  • Tufte CSS - Edward Tufte-inspired classical design
  • Vanilla JavaScript - Minimal client-side code for enhanced functionality
  • Semantic HTML - Accessible, well-structured markup

Infrastructure:

  • Docker - Containerized deployment
  • Fly.io - Production hosting with global CDN
  • uv - Fast Python package management

Installation

See the Quick Start section above for the easiest way to run locally.

Alternative Docker commands:

# Build and run manually
docker build -t kjvstudy .
docker run -p 8000:8000 kjvstudy

Python Development

For development without Docker:

Prerequisites:

  • Python 3.13 or higher
  • uv package manager

Steps:

# Install dependencies
uv sync

# Run the development server
uv run kjvstudy-org

# Open http://localhost:8000

Deployment

Fly.io Deployment

The application is optimized for Fly.io with:

  • 2GB RAM, shared CPU (2 cores)
  • Always-on configuration (min 1 machine)
  • Preloaded interlinear data for fast responses
  • Health checks and automatic recovery
# Install Fly CLI
curl -L https://fly.io/install.sh | sh

# Login to Fly
fly auth login

# Deploy
fly deploy

# View logs
fly logs

# SSH into machine
fly ssh console

Environment Variables

PYTHONUNBUFFERED=1              # Immediate log output
PYTHONDONTWRITEBYTECODE=1       # Skip .pyc files
PRELOAD_INTERLINEAR=true        # Load interlinear data on startup

Project Structure

kjvstudy.org/
├── kjvstudy_org/
│   ├── server.py              # Main FastAPI application
│   ├── kjv.py                 # Bible text access
│   ├── cross_references.py    # Cross-reference data
│   ├── topics.py              # Topical index
│   ├── interlinear_loader.py  # Greek/Hebrew data
│   ├── reading_plans.py       # Bible reading plans
│   ├── templates/             # Jinja2 templates
│   │   ├── base.html         # Base template with Tufte CSS
│   │   ├── verse.html        # Individual verse pages
│   │   ├── study_guides.html # Study guide templates
│   │   └── ...
│   └── static/               # Static assets
├── Dockerfile                # Container configuration
├── fly.toml                  # Fly.io deployment config
├── pyproject.toml            # Python dependencies
└── README.md                 # This file

Contributing

We welcome contributions! Areas where you can help:

Development:

  • Backend optimization and new features
  • Frontend improvements and accessibility
  • Mobile app development
  • API development for external integrations

Content:

  • Theological review for accuracy
  • Additional study guides and resources
  • Original language expertise (Greek/Hebrew)
  • Historical and cultural context

Design:

  • UI/UX improvements
  • Accessibility enhancements
  • Mobile experience optimization
  • Print stylesheet development

Documentation:

  • Tutorials and how-to guides
  • API documentation
  • User guides
  • Translation to other languages

Roadmap

Planned Features:

  • Multiple Bible translations (ESV, NASB, NIV)
  • User accounts with note-taking and highlighting
  • Bible reading plans with progress tracking
  • AI-powered commentary generation
  • Mobile applications (iOS/Android)
  • Prayer journal integration
  • Scripture memorization tools
  • Community discussion forums
  • Live streaming integration for Bible studies

License

This project is open source and available under the ISC License.

Acknowledgments

  • King James Bible (1769) - The foundational text
  • FastAPI Community - Excellent web framework
  • Edward Tufte - Design philosophy and CSS inspiration
  • Open Source Community - Tools and libraries that make this possible

"Study to shew thyself approved unto God, a workman that needeth not to be ashamed, rightly dividing the word of truth." — 2 Timothy 2:15 (KJV)

S
Description
No description provided
Readme ISC 146 MiB
Languages
Python 45.5%
HTML 41.2%
JavaScript 9.9%
CSS 3.3%