Files
malenia/entrypoints/startup.sh
2026-04-08 17:10:36 +07:00

14 lines
190 B
Bash

#!/bin/bash
set -e
echo "[+] Formatting and checking..."
echo
ruff check --fix
black .
echo "[+] Running migrations..."
echo
alembic upgrade head
echo "[+] Starting bot..."
python main.py