This commit is contained in:
Christoph J. Scherr 2023-10-01 02:10:37 +02:00
parent 42ea8d14d4
commit a027fd7582
3 changed files with 6 additions and 3 deletions

View File

@ -297,4 +297,4 @@ LOGGING = {
#MEDIA_ROOT = "/home/plex/Documents/code/python/gawa/media"
MEDIA_ROOT = "/app/media"
MEDIA_URL = "/media/"
FILE_UPLOAD_TEMP_DIR = "/tmp/gawa/upload"
# FILE_UPLOAD_TEMP_DIR = "/tmp/gawa/upload"

View File

@ -14,14 +14,14 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.conf.urls.i18n import i18n_patterns
from django.conf.urls import url
from django.contrib import admin
from django.urls import include, re_path
from django.urls import include, path
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
url(r'^i18n/', include('django.conf.urls.i18n')),
re_path(r'^i18n/', include('django.conf.urls.i18n')),
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
urlpatterns += i18n_patterns(

3
makemigrations.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
docker compose exec main python /app/manage.py makemigrations
docker compose exec main python /app/manage.py migrate