No description provided.
Hi, Just picked up this framework this morning and I'm running into problems. OS : Archlinux Nix : Tried 2.24-5, got the symlink error #356, upgraded to last unstable release fixed it, I then tried 2.20.5 as that's what appeared in one of your screenshots where you said it worked in an attempt to solve the current problem. Browser : Brave, Chromium, FIrefox I don't usually have problems with Django's dev server nor vite, I was just using both together yesterday and retried now and both work fine. After a while the browser returns the typical django yellow error page insidctaing a connection timeout : `HTTPConnectionPool(host='localhost', port=9000): Max retries exceeded with url: /_reactivated/ (Caused by ConnectTimeoutError(<urllib3.connection.HTTPConnection object at 0x762aee3b3740>, 'Connection to localhost timed out. (connect timeout=None)')) ` but no errors are displayed before that. Edit : I guess it's not a nix problem, just going from : ``` def polls_index(request: HttpRequest) -> HttpResponse: return templates.PollsIndex( latest_question_list=list(models.Question.objects.all()) ).render(request) ``` to something just returning hand written HTML : ``` def polls_index(request: HttpRequest) -> HttpResponse: foo = models.Question.objects.first().question_text return HttpResponse(f"<div> First question : {foo} </div>") ``` works and the /admin endpoint as well. So I guess it's a problem with the templates. In the docs it says : ```txt just run cd <project_name>, then nix-shell and finally python manage.py runserver With the server running, you can visit http://localhost:8000 to see Reactivated in action. ``` Is there an additional required step ? Thanks. Edit 2 : Things work fine with the docker instructions
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be still under discussion. The issue was opened by StitiFatah and has received 1 comments.