a month ago
i'm trying to deploy a django asgi application, but the nixpack keeping "thinking" that we are deploying a wsgi.
4 Replies
a month ago
Hey there! We've found the following might help you get unblocked faster:
If you find the answer from one of these, please let us know by solving the thread!
a month ago
This thread has been marked as public for community involvement, as it does not contain any sensitive or personal information. Any further activity in this thread will be visible to everyone.
Status changed to Open brody • about 1 month ago
a month ago
@guiant2023 can you share the log lines that show the errors your app is emitting? We need more information in order to debug this.
a month ago
Failed to find your WSGI_APPLICATION django setting. Add this to continue.
only in railpack
a month ago
Do you have the WSGI_APPLICATION
variable defined in your settings.py
file?
For example:
WSGI_APPLICATION = 'myproject.wsgi.application'
…where "myproject" is the actual name of your Django project's root module