From c458e6070f4101ee9c2a01f690a14137da58954a Mon Sep 17 00:00:00 2001 From: dal Date: Tue, 4 Mar 2025 09:46:26 -0700 Subject: [PATCH] fix seed script --- api/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/makefile b/api/makefile index ce6ffc47a..eaf6afc45 100644 --- a/api/makefile +++ b/api/makefile @@ -6,7 +6,7 @@ dev: supabase db reset export DATABASE_URL=postgres://postgres:postgres@127.0.0.1:54322/postgres && \ diesel migration run && \ - PGPASSWORD=postgres psql -h 127.0.0.1 -p 54322 -d postgres -U postgres -f src/database_dep/seed.sql && \ + PGPASSWORD=postgres psql -h 127.0.0.1 -p 54322 -d postgres -U postgres -f libs/database/seed.sql && \ export RUST_LOG=debug export CARGO_INCREMENTAL=1 nice cargo watch -x run