Skip to content
Open
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ wsgiref==0.1.2

## Installation


### 1. virtualenv / virtualenvwrapper
You should already know what is [virtualenv](http://www.virtualenv.org/), preferably [virtualenvwrapper](http://www.doughellmann.com/projects/virtualenvwrapper/) at this stage. So, simply create it for your own project, where `projectname` is the name of your project:

Expand Down
1 change: 0 additions & 1 deletion projectname/settings/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
TEMPLATE_DEBUG = DEBUG

ALLOWED_HOSTS = (

)

# SECURITY WARNING: keep the secret key used in production secret!
Expand Down
2 changes: 1 addition & 1 deletion templates/home.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% extends 'base.html' %}
{% extends 'base.html' %}

{% block title %}Home Page{% endblock %}

Expand Down