Skip to content

Commit 47d9ed8

Browse files
committed
Change bcodb directory to config directory
Changes to be committed: modified: .gitignore deleted: bcodb/settings.py renamed: bcodb/__init__.py -> config/__init__.py renamed: bcodb/asgi.py -> config/asgi.py renamed: bcodb/fixtures/local_data.json -> config/fixtures/local_data.json renamed: bcodb/fixtures/test_portal.json -> config/fixtures/test_portal.json renamed: bcodb/urls.py -> config/urls.py renamed: bcodb/wsgi.py -> config/wsgi.py modified: manage.py
1 parent f5926d5 commit 47d9ed8

File tree

9 files changed

+3
-291
lines changed

9 files changed

+3
-291
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ dmypy.json
131131
# --- USER-ADDED IGNORES --- #
132132

133133
# The settings file.
134-
bcodb/settings.py
134+
config/settings.py
135135

136136
# The server configuration file.
137137
server.conf

bcodb/settings.py

Lines changed: 0 additions & 288 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.

bcodb/wsgi.py renamed to config/wsgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111

1212
from django.core.wsgi import get_wsgi_application
1313

14-
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "bcodb.settings")
14+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
1515

1616
application = get_wsgi_application()

manage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
def main():
88
"""Run administrative tasks."""
9-
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "bcodb.settings")
9+
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
1010
try:
1111
from django.core.management import execute_from_command_line
1212
except ImportError as exc:

0 commit comments

Comments
 (0)