8 lines
146 B
Bash
Executable file
8 lines
146 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
|
|
|