I'm learning Django. I created the following Projects/Apps
- first_project
- first_app (Hello World - in view)
- ProTwo
- AppTwo (My Second App - in view)
The apps just display text at the moment from the views. Both are set up exact same way.
In the first_project I ran python manage.py runserver and when I go to http://127.0.0.1:8000 I see the hello world.
In the AppTwo I ran python manage.py runserver also but when I go to http://127.0.0.1:8000 I still get hello world.
How do I resolve this so I display "My Second App" in the browser instead of "Hello World"?.
I've followed the steps in the course including information here
https://www.tutorialspoint.com/django/django_creating_project.htm
It is showing results from first Proj/App -> Hello World and NOT "My Second App"
8000
). Start the second one on a different port, such asmanage.py runserver 0.0.0.0:8001
– Selcuk