Remove pip filevault (use local), fix bootstrap env var

This commit is contained in:
Russell Ballestrini 2026-01-02 18:59:01 -05:00
parent 53c9a1b71b
commit 2ebaa78f16
2 changed files with 2 additions and 5 deletions

View file

@ -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

View file

@ -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