Vishal S
Vishal S

Reputation: 23

Django Development server displaying wrong project data

I am able to access the django development server 127.0.0.1:8000 even without running "python manage.py runserver". It is displaying the previously created project website. Even when I run manage.py runserver from a different project it still show the data from previous project.

Why is this happening? How to recover?

Upvotes: 1

Views: 874

Answers (1)

John
John

Reputation: 36

You can try to run your server on a different port

python manage.py runserver 7000

Upvotes: 1

Related Questions