Home > Enterprise >  The Django admin site
The Django admin site

Time:02-21

I start the development server and explore it. When I open the Web browser and go to “/admin/” on my local domain, 1

CodePudding user response:

Did you migrate all such as db or session, etc..?

Run 'python manage.py migrate' to apply them.

Check port or open another port ex:

python manage.py runserver 0.0.0.0:80

CodePudding user response:

Please open cmd and enter your project path And then enter the following commands in cmd Note: If you have venv, activate it beforehand

python ./manage.py migrate
python ./manage.py runserver
  • Related