Skip to content

Commit

Permalink
renamed task_01 to task_02
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthHamza committed Apr 8, 2018
1 parent 20003f3 commit 7042680
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion 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", "task_01.settings")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "task_02.settings")
try:
from django.core.management import execute_from_command_line
except ImportError as exc:
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions task_01/settings.py → task_02/settings.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Django settings for task_01 project.
Django settings for task_02 project.
Generated by 'django-admin startproject' using Django 2.0.4.
Expand Down Expand Up @@ -49,7 +49,7 @@
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]

ROOT_URLCONF = 'task_01.urls'
ROOT_URLCONF = 'task_02.urls'

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

WSGI_APPLICATION = 'task_01.wsgi.application'
WSGI_APPLICATION = 'task_02.wsgi.application'


# Database
Expand Down
2 changes: 1 addition & 1 deletion task_01/urls.py → task_02/urls.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""task_01 URL Configuration
"""task_02 URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/2.0/topics/http/urls/
Expand Down
4 changes: 2 additions & 2 deletions task_01/wsgi.py → task_02/wsgi.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
WSGI config for task_01 project.
WSGI config for task_02 project.
It exposes the WSGI callable as a module-level variable named ``application``.
Expand All @@ -11,6 +11,6 @@

from django.core.wsgi import get_wsgi_application

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "task_01.settings")
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "task_02.settings")

application = get_wsgi_application()

0 comments on commit 7042680

Please sign in to comment.