19 lines
396 B
Bash
Executable File
19 lines
396 B
Bash
Executable File
#!/bin/bash
|
|
echo "Starting Judge System..."
|
|
|
|
# 激活虚拟环境 (如果有)
|
|
if [ -d "venv" ]; then
|
|
source venv/bin/activate
|
|
fi
|
|
|
|
# 安装依赖
|
|
pip install -r requirements.txt
|
|
|
|
# 迁移数据库
|
|
python manage.py makemigrations
|
|
python manage.py migrate
|
|
|
|
# 启动 Django 开发服务器
|
|
echo "Server running at http://127.0.0.1:8000/competition/admin/"
|
|
python manage.py runserver 0.0.0.0:8000
|