deploy asgi django application

guiant2023
HOBBY

a month ago

i'm trying to deploy a django asgi application, but the nixpack keeping "thinking" that we are deploying a wsgi.

$10 Bounty

4 Replies

Railway
BOT

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


case
HOBBY

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.


guiant2023
HOBBY

a month ago

Failed to find your WSGI_APPLICATION django setting. Add this to continue.

only in railpack


case
HOBBY

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