mirror of
https://github.com/rajnandan1/kener.git
synced 2026-06-23 04:10:22 +00:00
12 lines
347 B
Bash
Executable File
12 lines
347 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
# Index documentation into Redis when docs are bundled in the image
|
|
if [ -f /app/scripts/index-docs.ts ]; then
|
|
echo "[kener] Indexing documentation into Redis..."
|
|
node --experimental-strip-types /app/scripts/index-docs.ts || \
|
|
echo "[kener] Warning: docs indexing failed (is REDIS_URL set?). Continuing..."
|
|
fi
|
|
|
|
exec "$@"
|