mirror of
https://github.com/trufflesecurity/xsshunter
synced 2024-11-10 06:44:13 +00:00
8 lines
141 B
Bash
Executable file
8 lines
141 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
echo "Starting server..."
|
|
if [ "$NODE_ENV" = "development" ]; then
|
|
node server.js
|
|
else
|
|
pm2-runtime server.js
|
|
fi
|