I want to know how to stop and restart the web server in django.

Asked 2 years ago, Updated 2 years ago, 72 views

I ran the web server on django by referring to the page below.
https://djangogirlsjapan.gitbooks.io/workshop_tutorialjp/django_installation/
https://djangogirlsjapan.gitbooks.io/workshop_tutorialjp/django_start_project/

However, I don't know how to stop the server and run it again.
(It is written at the end of the second URL.)
Professor, please.

python python3 django

2022-09-30 11:11

1 Answers

Stop at Ctrl+c.After starting Django, the standard output will show how to stop. Quit the server with CONTROL-C..

$python manage.py runserver
Performing system checks...

System check identified issues (0 silenced).
May 30, 2018 - 18:09:26
Djangover version 2.0.4, using settings 'config.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CONTROL-C.


2022-09-30 11:11

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.