Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update run.py #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@
os.system("python manage.py makemigrations")
os.system("python manage.py migrate")

ip = "0." * 4

if platform.system() != "Linux":
os.system("python manage.py runserver")
os.system("python manage.py runserver")
else:
os.system("python manage.py runserver 0.0.0.0:8000 > log.txt & \n")
print("The backend is running!")
# 重定向输出与重定向错误输出,且log.log不同于log.txt
os.system("python manage.py runserver " + ip[:-1] + ":8000 >> log.log 2>&1 & \n")
print("The backend is running!")