47238f8567
Run ob login and sync-setup in foreground before backgrounding sync to prevent "Another sync instance is already running" error. Restrict the catch-all route to only serve whitelisted static file extensions to prevent sensitive files like credentials.json from being exposed. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
32 lines
1006 B
Bash
32 lines
1006 B
Bash
#!/bin/bash
|
|
|
|
echo "Running database migrations..."
|
|
aerich upgrade
|
|
|
|
# Ensure Obsidian vault directory exists
|
|
mkdir -p /app/data/obsidian
|
|
|
|
# Start continuous Obsidian sync if enabled
|
|
if [ "${OBSIDIAN_CONTINUOUS_SYNC}" = "true" ]; then
|
|
echo "Setting up Obsidian sync..."
|
|
|
|
VAULT_PATH="${OBSIDIAN_VAULT_PATH:-/app/data/obsidian}"
|
|
|
|
# Login and setup sync (foreground, must complete before sync starts)
|
|
if ob login --email "${OBSIDIAN_EMAIL}" --password "${OBSIDIAN_PASSWORD}" && \
|
|
ob sync-setup \
|
|
--vault "${OBSIDIAN_VAULT_ID}" \
|
|
--path "${VAULT_PATH}" \
|
|
--password "${OBSIDIAN_E2E_PASSWORD}" \
|
|
--device-name "${OBSIDIAN_DEVICE_NAME:-simbarag}"; then
|
|
# Start continuous sync in background
|
|
echo "Starting Obsidian continuous sync..."
|
|
ob sync --continuous --path "${VAULT_PATH}" &
|
|
else
|
|
echo "WARNING: Obsidian sync setup failed. Continuing without sync."
|
|
fi
|
|
fi
|
|
|
|
echo "Starting application..."
|
|
python app.py
|