8 lines
149 B
Bash
Executable file
8 lines
149 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Installing requirements..."
|
|
pip install -r /code/requirements.txt
|
|
|
|
echo "Starting discord bot..."
|
|
python -u /code/src/main.py $1
|
|
|