|
@@ -12,16 +12,17 @@ https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/
|
|
|
|
|
|
import os
|
|
|
|
|
|
+
|
|
|
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
|
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
+
|
|
|
+
|
|
|
# Define placeholder gettext function
|
|
|
# This function will mark strings in settings visible to makemessages
|
|
|
# without need for Django's i18n features be initialized first.
|
|
|
_ = lambda x: x
|
|
|
|
|
|
|
|
|
-# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
|
|
-BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
|
-
|
|
|
-
|
|
|
# Quick-start development settings - unsuitable for production
|
|
|
# See https://docs.djangoproject.com/en/{{ docs_version }}/howto/deployment/checklist/
|
|
|
|