Updated README.md

This commit is contained in:
Vague Rabbit 2021-02-05 14:06:36 -08:00
parent 9de27a03a0
commit c6c2b14241
2 changed files with 45 additions and 6 deletions

View file

@ -48,12 +48,6 @@ git clone https://github.com/thewhiterabbit/Deploy_Saleor.git
``` ```
sudo bash Deploy_Saleor/deploy-saleor.sh sudo bash Deploy_Saleor/deploy-saleor.sh
``` ```
<li>With sudo, from the home directory, run the deploy-dashboard.sh script.</li>
```
sudo bash Deploy_Saleor/deploy-dashboard.sh
```
</ol> </ol>
<hr> <hr>
<p>Please <a href="https://github.com/thewhiterabbit/Deploy_Saleor/issues">report any errors as an issue</a> so that they can be addressed.</p> <p>Please <a href="https://github.com/thewhiterabbit/Deploy_Saleor/issues">report any errors as an issue</a> so that they can be addressed.</p>

45
resources/saleor/wsgi.py Normal file
View file

@ -0,0 +1,45 @@
"""WSGI config for Saleor project.
This module contains the WSGI application used by Django's development server
and any production WSGI deployments. It should expose a module-level variable
named ``application``. Django's ``runserver`` and ``runfcgi`` commands discover
this application via the ``WSGI_APPLICATION`` setting.
Usually you will have the standard Django WSGI application here, but it also
might make sense to replace the whole Django WSGI application with a custom one
that later delegates to the Django one. For example, you could introduce WSGI
middleware here, or combine a Django application with an application of another
framework.
"""
import os
from django.core.wsgi import get_wsgi_application
from django.utils.functional import SimpleLazyObject
from saleor.wsgi.health_check import health_check
def get_allowed_host_lazy():
from django.conf import settings
return settings.ALLOWED_HOSTS[0]
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "saleor.settings")
application = get_wsgi_application()
application = health_check(application, "/health/")
# Warm-up the django application instead of letting it lazy-load
application(
{
"REQUEST_METHOD": "GET",
"SERVER_NAME": SimpleLazyObject(get_allowed_host_lazy),
"REMOTE_ADDR": "127.0.0.1",
"SERVER_PORT": 80,
"PATH_INFO": "/graphql/",
"wsgi.input": b"",
"wsgi.multiprocess": True,
},
lambda x, y: None,
)