diff --git a/A_core/__pycache__/settings.cpython-313.pyc b/A_core/__pycache__/settings.cpython-313.pyc index 96d2ba0..deef499 100644 Binary files a/A_core/__pycache__/settings.cpython-313.pyc and b/A_core/__pycache__/settings.cpython-313.pyc differ diff --git a/A_core/__pycache__/settings.cpython-38.pyc b/A_core/__pycache__/settings.cpython-38.pyc index 1c45267..8432246 100644 Binary files a/A_core/__pycache__/settings.cpython-38.pyc and b/A_core/__pycache__/settings.cpython-38.pyc differ diff --git a/A_core/__pycache__/urls.cpython-313.pyc b/A_core/__pycache__/urls.cpython-313.pyc index 229ca03..a406814 100644 Binary files a/A_core/__pycache__/urls.cpython-313.pyc and b/A_core/__pycache__/urls.cpython-313.pyc differ diff --git a/A_core/__pycache__/urls.cpython-38.pyc b/A_core/__pycache__/urls.cpython-38.pyc index 127001a..69ee8e6 100644 Binary files a/A_core/__pycache__/urls.cpython-38.pyc and b/A_core/__pycache__/urls.cpython-38.pyc differ diff --git a/A_core/__pycache__/wsgi.cpython-38.pyc b/A_core/__pycache__/wsgi.cpython-38.pyc index 280c9b6..7864ffc 100644 Binary files a/A_core/__pycache__/wsgi.cpython-38.pyc and b/A_core/__pycache__/wsgi.cpython-38.pyc differ diff --git a/A_core/settings.py b/A_core/settings.py index 043d922..89d6481 100644 --- a/A_core/settings.py +++ b/A_core/settings.py @@ -23,7 +23,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent SECRET_KEY = 'django-insecure-kst@+h&50%!m$(d!l*qbb0l7f@z#@#me__yye^$5kg%0m%1=im' # SECURITY WARNING: don't run with debug turned on in production! -DEBUG = False +DEBUG = True ALLOWED_HOSTS = ['www.sillaamp.com', 'sillaamp.com', '192.168.1.119', 'localhost', '127.0.0.1', '*'] diff --git a/A_core/urls.py b/A_core/urls.py index 451c4c1..961af29 100644 --- a/A_core/urls.py +++ b/A_core/urls.py @@ -30,6 +30,9 @@ urlpatterns = [ path('accounts/', include('C_accounts.urls')), # 커스텀 계정 URL path('', include('B_main.urls')), # 미디어 파일 서빙 (DEBUG=False 상황에서도 작동) +] + +urlpatterns += [ re_path(r'^media/(?P.*)$', serve, {'document_root': settings.MEDIA_ROOT}), ] diff --git a/B_main/__pycache__/admin.cpython-38.pyc b/B_main/__pycache__/admin.cpython-38.pyc index dd743e5..2793789 100644 Binary files a/B_main/__pycache__/admin.cpython-38.pyc and b/B_main/__pycache__/admin.cpython-38.pyc differ diff --git a/B_main/__pycache__/apps.cpython-38.pyc b/B_main/__pycache__/apps.cpython-38.pyc index 52a0c32..606a519 100644 Binary files a/B_main/__pycache__/apps.cpython-38.pyc and b/B_main/__pycache__/apps.cpython-38.pyc differ diff --git a/B_main/__pycache__/forms.cpython-38.pyc b/B_main/__pycache__/forms.cpython-38.pyc index 343f6b4..6107b99 100644 Binary files a/B_main/__pycache__/forms.cpython-38.pyc and b/B_main/__pycache__/forms.cpython-38.pyc differ diff --git a/B_main/__pycache__/models.cpython-38.pyc b/B_main/__pycache__/models.cpython-38.pyc index dbd10fe..1424fef 100644 Binary files a/B_main/__pycache__/models.cpython-38.pyc and b/B_main/__pycache__/models.cpython-38.pyc differ diff --git a/B_main/__pycache__/peopleinfo.cpython-38.pyc b/B_main/__pycache__/peopleinfo.cpython-38.pyc index b856776..4d83494 100644 Binary files a/B_main/__pycache__/peopleinfo.cpython-38.pyc and b/B_main/__pycache__/peopleinfo.cpython-38.pyc differ diff --git a/B_main/__pycache__/urls.cpython-313.pyc b/B_main/__pycache__/urls.cpython-313.pyc index 7245f76..5954864 100644 Binary files a/B_main/__pycache__/urls.cpython-313.pyc and b/B_main/__pycache__/urls.cpython-313.pyc differ diff --git a/B_main/__pycache__/urls.cpython-38.pyc b/B_main/__pycache__/urls.cpython-38.pyc index 20793bb..f53e560 100644 Binary files a/B_main/__pycache__/urls.cpython-38.pyc and b/B_main/__pycache__/urls.cpython-38.pyc differ diff --git a/B_main/__pycache__/views.cpython-38.pyc b/B_main/__pycache__/views.cpython-38.pyc index 8c28a99..5312904 100644 Binary files a/B_main/__pycache__/views.cpython-38.pyc and b/B_main/__pycache__/views.cpython-38.pyc differ diff --git a/B_main/migrations/__pycache__/__init__.cpython-313.pyc b/B_main/migrations/__pycache__/__init__.cpython-313.pyc index 66ce607..292bbdd 100644 Binary files a/B_main/migrations/__pycache__/__init__.cpython-313.pyc and b/B_main/migrations/__pycache__/__init__.cpython-313.pyc differ diff --git a/C_accounts/__pycache__/admin.cpython-38.pyc b/C_accounts/__pycache__/admin.cpython-38.pyc index 0a523b4..794b943 100644 Binary files a/C_accounts/__pycache__/admin.cpython-38.pyc and b/C_accounts/__pycache__/admin.cpython-38.pyc differ diff --git a/C_accounts/__pycache__/apps.cpython-38.pyc b/C_accounts/__pycache__/apps.cpython-38.pyc index 9430949..2e55306 100644 Binary files a/C_accounts/__pycache__/apps.cpython-38.pyc and b/C_accounts/__pycache__/apps.cpython-38.pyc differ diff --git a/C_accounts/__pycache__/forms.cpython-38.pyc b/C_accounts/__pycache__/forms.cpython-38.pyc index 71a4bfc..b9c3f6c 100644 Binary files a/C_accounts/__pycache__/forms.cpython-38.pyc and b/C_accounts/__pycache__/forms.cpython-38.pyc differ diff --git a/C_accounts/__pycache__/middleware.cpython-38.pyc b/C_accounts/__pycache__/middleware.cpython-38.pyc index 7301842..9f6e790 100644 Binary files a/C_accounts/__pycache__/middleware.cpython-38.pyc and b/C_accounts/__pycache__/middleware.cpython-38.pyc differ diff --git a/C_accounts/__pycache__/models.cpython-38.pyc b/C_accounts/__pycache__/models.cpython-38.pyc index 85a4788..fc186c3 100644 Binary files a/C_accounts/__pycache__/models.cpython-38.pyc and b/C_accounts/__pycache__/models.cpython-38.pyc differ diff --git a/C_accounts/__pycache__/signals.cpython-38.pyc b/C_accounts/__pycache__/signals.cpython-38.pyc index ee11afa..700d600 100644 Binary files a/C_accounts/__pycache__/signals.cpython-38.pyc and b/C_accounts/__pycache__/signals.cpython-38.pyc differ diff --git a/C_accounts/__pycache__/urls.cpython-38.pyc b/C_accounts/__pycache__/urls.cpython-38.pyc index 778662b..2721ec9 100644 Binary files a/C_accounts/__pycache__/urls.cpython-38.pyc and b/C_accounts/__pycache__/urls.cpython-38.pyc differ diff --git a/C_accounts/__pycache__/views.cpython-38.pyc b/C_accounts/__pycache__/views.cpython-38.pyc index 2fd20c6..649d2b4 100644 Binary files a/C_accounts/__pycache__/views.cpython-38.pyc and b/C_accounts/__pycache__/views.cpython-38.pyc differ diff --git a/C_accounts/migrations/__pycache__/__init__.cpython-313.pyc b/C_accounts/migrations/__pycache__/__init__.cpython-313.pyc index 343e99e..1413d80 100644 Binary files a/C_accounts/migrations/__pycache__/__init__.cpython-313.pyc and b/C_accounts/migrations/__pycache__/__init__.cpython-313.pyc differ diff --git a/C_accounts/templatetags/__pycache__/__init__.cpython-313.pyc b/C_accounts/templatetags/__pycache__/__init__.cpython-313.pyc index eb1d255..391aeb1 100644 Binary files a/C_accounts/templatetags/__pycache__/__init__.cpython-313.pyc and b/C_accounts/templatetags/__pycache__/__init__.cpython-313.pyc differ diff --git a/C_accounts/templatetags/__pycache__/form_filters.cpython-38.pyc b/C_accounts/templatetags/__pycache__/form_filters.cpython-38.pyc index db0d4f0..81ca310 100644 Binary files a/C_accounts/templatetags/__pycache__/form_filters.cpython-38.pyc and b/C_accounts/templatetags/__pycache__/form_filters.cpython-38.pyc differ diff --git a/db.sqlite3 b/db.sqlite3 index 169d310..4df04ac 100644 Binary files a/db.sqlite3 and b/db.sqlite3 differ diff --git a/media/profile_photos/증명사진.jpg b/media/profile_photos/증명사진.jpg new file mode 100644 index 0000000..9a0fdb4 Binary files /dev/null and b/media/profile_photos/증명사진.jpg differ