I'm learning to use Django. I'm following their first tutorial at: https://docs.djangoproject.com/en/1.6/intro/tutorial01/
I'm running everything on an AWS server i made with the directory structure below.
I tried running their code to make a simple code deployment to a browser: python manage.py runserver
it runs without error,but when i go to http://127.0.0.1:8000/ chrome throws error "Oops! Google Chrome could not connect to 127.0.0.1:8000" I know i'm misunderstanding the structure of a remove server. If someone could enlighten me on how to get this working i would appreciate it.
thank you
(my directory structure)
/home/PythonFiles# ls -R .: mysite
./mysite: manage.py mysite
./mysite/mysite: init.py init.pyc settings.py settings.pyc urls.py wsgi.py wsgi.pyc