Implement recipes app in beta version #17

Merged
Benjamin merged 20 commits from recipes into master 2023-03-25 12:00:44 +00:00
3 changed files with 8 additions and 0 deletions
Showing only changes of commit 1512cae857 - Show all commits

View file

@ -1,4 +1,5 @@
asgiref==3.5.2 asgiref==3.5.2
Django==4.1.4 Django==4.1.4
Pillow==9.4.0
sqlparse==0.4.3 sqlparse==0.4.3
tzdata==2022.7 tzdata==2022.7

View file

@ -143,3 +143,6 @@ STATIC_URL = 'static/'
# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field # https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'
MEDIA_ROOT = os.path.join(BASE_DIR, 'media/')
MEDIA_URL = 'media/'

View file

@ -34,6 +34,8 @@ Including another URLconf
""" """
from django.contrib import admin from django.contrib import admin
from django.urls import path, include from django.urls import path, include
from django.conf import settings
from django.conf.urls.static import static
from . import views from . import views
urlpatterns = [ urlpatterns = [
@ -44,3 +46,5 @@ urlpatterns = [
path('accounts/profile/', views.profile, name='profile'), path('accounts/profile/', views.profile, name='profile'),
path('accounts/', include('django.contrib.auth.urls')), path('accounts/', include('django.contrib.auth.urls')),
] ]
urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)