9 lines
125 B
Bash
Executable File
9 lines
125 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
echo "[+] Running migrations..."
|
|
echo
|
|
alembic upgrade head
|
|
|
|
echo "[+] Starting bot..."
|
|
python -m bot.main |