seeding with initial scripts.

This commit is contained in:
Jordan Wages 2025-07-16 23:38:42 -05:00
commit e744276481
5 changed files with 112 additions and 0 deletions

13
run-import.sh Executable file
View file

@ -0,0 +1,13 @@
#!/bin/bash
set -e
echo "[INFO] Creating virtual environment..."
python3 -m venv .venv
source .venv/bin/activate
echo "[INFO] Installing dependencies..."
pip install --upgrade pip
pip install -r requirements.txt || echo "[WARN] requirements.txt not found, skipping."
echo "[INFO] Running database setup..."
python scripts/init_db.py