aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 9764c2b4..4d8bace2 100644
--- a/Makefile
+++ b/Makefile
@@ -4,17 +4,17 @@ format:
bunx prettier . --write && bunx eslint .
prisma:
- cd db; \
+ cd packages/db; \
bunx prisma migrate dev; \
bunx prisma generate
workers:
- cd workers; \
+ cd packages/workers; \
bun --watch index.ts
web:
- cd web; \
+ cd packages/web; \
bun run dev
studio:
- cd db; \
+ cd packages/db; \
bunx prisma studio