aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-02-08 15:14:23 +0000
committerMohamedBassem <me@mbassem.com>2024-02-08 15:15:21 +0000
commit80bb8a108f29331cdb2f2695f6801beee104dc89 (patch)
treeb1ae2a512963a9c916c4bfed71f7633f508de131 /Makefile
parent333429adbaaa592cc96b480a5228f0e3f1de4cc2 (diff)
downloadkarakeep-80bb8a108f29331cdb2f2695f6801beee104dc89.tar.zst
[refactor] Move the different packages to the package subdir
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