Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed #6 -- Use 127.0.0.1 instead of localhost. #19

Merged
merged 1 commit into from
Jul 6, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion django_admin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ As you can see, we import (include) the Post model defined in the previous chapt

Ok, time to look at our Post model. Go to the browser and type an address:

http://localhost:8000/admin/
http://127.0.0.1:8000/admin/

You will see a login page like this:

Expand Down
2 changes: 1 addition & 1 deletion starting_django_project/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ You need to be in a folder that contains `manage.py` file (in `mysite` directory

Now all you need to do is to check if your website is running :). Open your browser (Firefox, Chrome, Safari, Internet Explorer or whatever you use) and type the address:

http://localhost:8000/
http://127.0.0.1:8000/

Congratulations! You've just created your first website and run it using a web server! Isn't it awesome?

Expand Down