From f0262634fdc07fcfb0782bdde095d68f3604daa6 Mon Sep 17 00:00:00 2001 From: Cp0204 Date: Sun, 10 Mar 2024 22:41:18 +0800 Subject: [PATCH] =?UTF-8?q?=E8=87=AA=E5=8A=A8=E6=9B=B4=E6=96=B0=E5=8D=87?= =?UTF-8?q?=E7=BA=A7=E6=95=B0=E6=8D=AE=E5=BA=93=EF=BC=8C=E5=90=91=E5=89=8D?= =?UTF-8?q?=E5=85=BC=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/kingmo888/rustdesk-api-server/issues/47 --- run.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/run.sh b/run.sh index 4bc0ac1..3ce04d5 100644 --- a/run.sh +++ b/run.sh @@ -7,4 +7,6 @@ if [ ! -e "./db/db.sqlite3" ]; then echo "首次运行,初始化数据库" fi +python manage.py makemigrations +python manage.py migrate python manage.py runserver $HOST:21114;