I am trying to run a Django project with manage.py as the startup file. I can run it fine from command prompt using python manage.py runserver
and manually navigate to the site. I am expecting that when I press the run button in Visual Studio that it will start the server and open my browser to show me the page, but instead it just opens the options for manage.py:
Type 'manage.py help <subcommand>' for help on a specific subcommand.
Available subcommands:
[auth]
changepassword
createsuperuser
etc.
I've tried re-setting manage.py as the startup file, resetting the startup project, and setting the startup script for the Python Tools Interactive Windows to manage.py.
Thanks in advance for any help.