From 2ebaa78f1607be282d62dc7223d48809e395bc44 Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Fri, 2 Jan 2026 18:59:01 -0500 Subject: [PATCH] Remove pip filevault (use local), fix bootstrap env var --- bootstrap-neopig.sh | 4 ++-- requirements.txt | 3 --- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/bootstrap-neopig.sh b/bootstrap-neopig.sh index 2f0a4f0..72aafa5 100644 --- a/bootstrap-neopig.sh +++ b/bootstrap-neopig.sh @@ -13,5 +13,5 @@ pip install -r requirements.txt # Create data directory for database mkdir -p data -# Run neopig.py --serve on port 80 with sandbox mode (tar.gz uploads) -NEOPIG_SANDBOX=1 NEOPIG_DISABLE_CRAWL=1 python neopig.py --serve --host 0.0.0.0 --port 80 +# Run neopig.py --serve on port 80 with import mode (tar.gz uploads) +NEOPIG_IMPORT=1 NEOPIG_DISABLE_CRAWL=1 python neopig.py --serve --host 0.0.0.0 --port 80 diff --git a/requirements.txt b/requirements.txt index 2b09eb8..f466d71 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,9 +9,6 @@ miniuri>=0.1.0 sqlalchemy[asyncio]>=2.0.0 aiosqlite>=0.19.0 -# Storage -filevault>=0.1.0 - # SERP server fastapi>=0.104.0 uvicorn>=0.24.0