Skip to content

Commit 0ed2275

Browse files
author
Mario Colombo
committed
improve testing setup for djangocms-link
1 parent 6115fbc commit 0ed2275

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

backend/settings.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@
5858
'parler',
5959

6060
# links
61-
'djangocms-link',
62-
61+
'djangocms_link',
62+
6363
# the next-gen text editor - optional, but used in most projects
6464
'djangocms_text',
6565

@@ -81,6 +81,12 @@
8181
'djangocms_frontend.contrib.image',
8282
'djangocms_frontend.contrib.tabs',
8383
'djangocms_frontend.contrib.utilities',
84+
85+
'taggit',
86+
'taggit_autosuggest',
87+
'meta',
88+
'sortedm2m',
89+
'djangocms_blog',
8490
]
8591

8692
MIDDLEWARE = [

backend/urls.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
urlpatterns = [
77
path('admin/', admin.site.urls),
8+
path('taggit_autosuggest/', include('taggit_autosuggest.urls')),
9+
810
]
911

1012
if settings.DEBUG:

requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
#
55
# pip-compile --output-file=requirements.txt requirements.in
66
#
7+
8+
git+https://github.com/fsbraun/djangocms-blog.git@develop-4#egg=djangocms-blog
9+
710
asgiref==3.8.1
811
# via django
912
boto3==1.35.50

0 commit comments

Comments
 (0)