Files
server/scripts/docker-entrypoint.dev.sh
T
Stephan 2a5e631d1f Fix bug where nodemon restarts multiple times
- Nodemon was watching the whole file system and not only the /app directory
2021-12-03 10:21:43 +01:00

14 lines
183 B
Bash
Executable File

#!/bin/bash
if ! test -f INITIALIZED; then
touch INITIALIZED
cd /app
npm i -g ts-node nodemon
npm i
npx prisma db push
fi
nodemon --watch /app /app/src/app.ts