Closed Starli0n closed 4 years ago
try
from django.conf.urls import include, url
from django.contrib import admin
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
urlpatterns = [
url(r'', include("profilemaker.urls")),
]
urlpatterns += staticfiles_urlpatterns()
This should work with 3.0.4
I think quite a few urlconfig things changed and youre probably getting one of the, wrong. You don't need an admin include as the project currently does not use the database at all. When you get it to run with current Django, feel free to send a pull request. Probably there is not much to be changed, but it needs to be tested.
Thank you, it works :+1:
I am preparing a pull request 😄
Documentation fixed in pull request #204.
Hi,
I faced on issue while trying to run my own server in order to potentially make some contributions.
Indeed, the file INSTALL.md indicate a version of Django ("django>=1.8,<1.9") which seems to be outdated compare to the version from the requirements.txt file ("Django==3.0.4").
I tried to adapt the explanations for the
project\urls.py
file and I have this code:But then I have an error, while trying to run the server:
Could you please help me on that ?
By the way, you project is a fantastic one :+1: