Spaces:
Sleeping
Sleeping
Deep commited on
Commit ·
2885435
1
Parent(s): e7b5120
static
Browse files- config/settings.py +3 -0
config/settings.py
CHANGED
|
@@ -12,6 +12,9 @@ https://docs.djangoproject.com/en/6.0/ref/settings/
|
|
| 12 |
|
| 13 |
from pathlib import Path
|
| 14 |
|
|
|
|
|
|
|
|
|
|
| 15 |
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
| 16 |
BASE_DIR = Path(__file__).resolve().parent.parent
|
| 17 |
|
|
|
|
| 12 |
|
| 13 |
from pathlib import Path
|
| 14 |
|
| 15 |
+
import os
|
| 16 |
+
STATIC_ROOT = os.path.join(BASE_DIR, "staticfiles")
|
| 17 |
+
|
| 18 |
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
| 19 |
BASE_DIR = Path(__file__).resolve().parent.parent
|
| 20 |
|