Fix bug where nodemon restarts multiple times

- Nodemon was watching the whole file system and not only the /app directory
This commit is contained in:
Stephan
2021-12-03 10:21:43 +01:00
parent a138bca256
commit 2a5e631d1f
+1 -1
View File
@@ -10,4 +10,4 @@ if ! test -f INITIALIZED; then
npx prisma db push
fi
nodemon /app/src/app.ts
nodemon --watch /app /app/src/app.ts