e6d7888513
- python -m scripts.seed (module mode) fixes ModuleNotFoundError - Add scripts/__init__.py to make scripts/ a proper package - Generate initial Alembic migration for users table - Replace passlib with direct bcrypt>=4.0 (passlib unmaintained, broken with bcrypt 4.x) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
233 B
Bash
Executable File
12 lines
233 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
echo "[start] running migrations..."
|
|
alembic upgrade head
|
|
|
|
echo "[start] seeding dev data..."
|
|
python -m scripts.seed
|
|
|
|
echo "[start] starting uvicorn..."
|
|
exec uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
|