Compare commits

...

1 Commits

Author SHA1 Message Date
Mauricio Baeza 0e3b9dfb14 Add media to gitignore 2021-09-10 17:03:42 -05:00
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,6 +1,7 @@
# ---> Python
conf.py
media/
# Byte-compiled / optimized / DLL files
__pycache__/

View File

@ -25,7 +25,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent
STATIC_ROOT = os.path.join(BASE_DIR, 'static/')
STATIC_URL = '/static/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media/')
MEDIA_URL = 'media/'
MEDIA_URL = '/media/'
# Quick-start development settings - unsuitable for production