12 lines
155 B
Bash
Executable File
12 lines
155 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
yarn --dev
|
|
|
|
clear
|
|
|
|
while true; do
|
|
npx nodemon --ext prisma --exec "yarn db:push && yarn seed"
|
|
echo "restarting..."
|
|
sleep 1
|
|
done
|