Skip to content

Commit

Permalink
Rename Django Project
Browse files Browse the repository at this point in the history
  • Loading branch information
jmitchel3 committed Jul 13, 2015
1 parent 2c29fbe commit 2233a04
Show file tree
Hide file tree
Showing 22 changed files with 10 additions and 159 deletions.
2 changes: 1 addition & 1 deletion src/manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys

if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "trydjango18.settings")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "matchmaker.settings")

from django.core.management import execute_from_command_line

Expand Down
File renamed without changes.
Binary file added src/matchmaker/__init__.pyc
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Django settings for trydjango18 project.
Django settings for matchmaker project.
Generated by 'django-admin startproject' using Django 1.8.
Expand Down Expand Up @@ -71,7 +71,7 @@
'django.middleware.security.SecurityMiddleware',
)

ROOT_URLCONF = 'trydjango18.urls'
ROOT_URLCONF = 'matchmaker.urls'

TEMPLATES = [
{
Expand All @@ -89,7 +89,7 @@
},
]

WSGI_APPLICATION = 'trydjango18.wsgi.application'
WSGI_APPLICATION = 'matchmaker.wsgi.application'


# Database
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


"""
Django settings for trydjango18 project.
Django settings for matchmaker project.
Generated by 'django-admin startproject' using Django 1.8.
Expand Down Expand Up @@ -88,7 +88,7 @@
'django.middleware.security.SecurityMiddleware',
)

ROOT_URLCONF = 'trydjango18.urls'
ROOT_URLCONF = 'matchmaker.urls'

TEMPLATES = [
{
Expand All @@ -106,7 +106,7 @@
},
]

WSGI_APPLICATION = 'trydjango18.wsgi.application'
WSGI_APPLICATION = 'matchmaker.wsgi.application'


# Database
Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion src/trydjango18/urls.py → src/matchmaker/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Examples:
url(r'^$', 'newsletter.views.home', name='home'),
url(r'^contact/$', 'newsletter.views.contact', name='contact'),
url(r'^about/$', 'trydjango18.views.about', name='about'),
url(r'^about/$', 'matchmaker.views.about', name='about'),
# url(r'^blog/', include('blog.urls')),

url(r'^admin/', include(admin.site.urls)),
Expand Down
Binary file renamed src/trydjango18/urls.pyc → src/matchmaker/urls.pyc
Binary file not shown.
File renamed without changes.
Binary file added src/matchmaker/views.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion src/trydjango18/wsgi.py → src/matchmaker/wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@

from django.core.wsgi import get_wsgi_application

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "trydjango18.settings")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "matchmaker.settings")

application = get_wsgi_application()
Binary file renamed src/trydjango18/wsgi.pyc → src/matchmaker/wsgi.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion src/templates/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="{% url 'home' %}"><img src="{% static 'img/mvp_landing_logo.png' %}" /></a>
<a class="navbar-brand" href="{% url 'home' %}">Matchmaker</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
Expand Down
Binary file removed src/trydjango18/__init__.pyc
Binary file not shown.
149 changes: 0 additions & 149 deletions src/trydjango18/old_settings.py

This file was deleted.

Binary file removed src/trydjango18/settings.pyc
Binary file not shown.
Binary file removed src/trydjango18/views.pyc
Binary file not shown.

0 comments on commit 2233a04

Please sign in to comment.