File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -50,3 +50,6 @@ android.keystore
5050# Ignore checksum file if it’s generated during build
5151manifest-checksum.txt
5252.beads
53+
54+ # Auto-synced docs wiki (cloned by docker/ol-home-start.sh)
55+ docs /wiki /
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3+ # Clone or update docs wiki so developers and AI assistants can search
4+ # documentation locally without switching to the browser.
5+ if [ -d " /openlibrary/docs/wiki/.git" ]; then
6+ echo " Updating docs wiki..."
7+ cd /openlibrary/docs/wiki && git pull --ff-only
8+ else
9+ echo " Cloning docs wiki..."
10+ git clone https://github.com/internetarchive/openlibrary.wiki.git /openlibrary/docs/wiki
11+ fi
12+ cd /openlibrary
13+
314make reindex-solr
You can’t perform that action at this time.
0 commit comments