Skip to content

Commit

Permalink
fix: change db migration from prepare which runs automatically and br…
Browse files Browse the repository at this point in the history
…eaks tests to prepare:db
  • Loading branch information
luandro committed Oct 31, 2024
1 parent b86f4e2 commit a1c743b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ cp deploy/langtrace-stack/.env.example deploy/langtrace-stack/.env

```ts
// Basic development
bun prepare // prepares database and pre-commit hooks
bun prepare:db // prepares database and pre-commit hooks
bun dev // starts simulator, Supabase api and Trigger.dev jobs
// Other available commands
bun dev:all // starts all services in development mode
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "earth-denfeders-assistant",
"workspaces": ["packages/*", "apps/*", "tooling/*"],
"scripts": {
"prepare": "lefthook install && turbo run migrate && turbo run seed",
"prepare:db": "lefthook install && turbo run migrate && turbo run seed",
"dev": "turbo dev --filter=@eda/jobs --filter=@eda/simulator --filter=@eda/ai-api",
"build": "turbo build",
"clean": "git clean -xdf node_modules",
Expand Down

0 comments on commit a1c743b

Please sign in to comment.