mirror of
https://github.com/maubot/maubot
synced 2025-09-01 19:20:38 +00:00
12 lines
229 B
Bash
Executable file
12 lines
229 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd /opt/maubot
|
|
|
|
if [ ! -f /config/config.yaml ]; then
|
|
echo "Config file not found."
|
|
exit
|
|
fi
|
|
|
|
mkdir -p /data/trash /data/dbs
|
|
alembic -x config=/config/config.yaml upgrade head
|
|
python3 -m maubot -c /config/config.yaml
|