Skip to content

Commit

Permalink
Fixed issues with running server
Browse files Browse the repository at this point in the history
  • Loading branch information
emilyfeuer committed Feb 23, 2023
1 parent ff49b13 commit b8a680e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion transcriptsite/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
# Application definition

INSTALLED_APPS = [
'transcription.apps.TranscriptionConfig',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
Expand Down Expand Up @@ -62,6 +63,7 @@
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
'django.template.context_processors.media',
],
},
},
Expand Down Expand Up @@ -117,7 +119,7 @@

STATIC_URL = 'static/'

MEDIA_URL = '/media'
MEDIA_URL = 'media/'
MEDIA_ROOT = BASE_DIR / 'uploads'


Expand Down

0 comments on commit b8a680e

Please sign in to comment.