mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-02-12 16:12:44 +00:00
11 lines
229 B
Bash
Executable File
11 lines
229 B
Bash
Executable File
#/bin/bash
|
|
# if node_modules folder does not exist, install dependencies
|
|
if [ ! -d "node_modules" ]; then
|
|
npm install
|
|
fi
|
|
while true; do \
|
|
npm run dev; \
|
|
echo "Process crashed! Restarting in 10 seconds..."; \
|
|
sleep 10; \
|
|
done
|