We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86bb821 commit 7d1d86cCopy full SHA for 7d1d86c
2 files changed
Makefile
@@ -1,5 +1,5 @@
1
app-run:
2
- uv run manage.py runserver 127.0.0.1:8000
+ uv run manage.py runserver localhost:8000
3
4
locales-add:
5
uv run manage.py makemessages -a
task_manager/settings.py
@@ -32,7 +32,7 @@
32
# SECURITY WARNING: don't run with debug turned on in production!
33
DEBUG = os.getenv("DEBUG", False)
34
35
-ALLOWED_HOSTS = ['python-project-52-r4q7.onrender.com']
+ALLOWED_HOSTS = ['python-project-52-r4q7.onrender.com', 'localhost', '127.0.0.1']
36
37
38
# Application definition
0 commit comments