File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -329,6 +329,9 @@ source venv/bin/activate # On Windows: venv\Scripts\activate
329329# Install dependencies
330330pip install -r requirements.txt
331331
332+ # Run database migrations (required before first launch and after updates)
333+ alembic upgrade head
334+
332335# Start the backend with hot reloading
333336cd app
334337fastapi dev main.py --host 0.0.0.0 --port 8000
@@ -382,6 +385,7 @@ docker compose exec db psql -U postgres -d postgres
382385
383386```bash
384387# Backend commands (in api/ directory with venv activated)
388+ alembic upgrade head # Run database migrations (required before first launch and after updates)
385389fastapi dev main.py # Development server
386390
387391# Frontend commands (in ui/ directory)
You can’t perform that action at this time.
0 commit comments