13 lines
369 B
Bash
13 lines
369 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
mkdir -p /home/container/discord_bot /home/container/server
|
||
|
cd '/home/container/discord_bot'
|
||
|
npm install
|
||
|
pm2 start bot.js
|
||
|
|
||
|
cd /home/container/server
|
||
|
echo 'Starting server on' $PORT
|
||
|
|
||
|
# Using stdbuf to force unbuffered output since server is not directly connected to terminal and is buffering output
|
||
|
stdbuf -oL ./server -allow-server-runas-root -port $PORT
|