[Answer]-Deploying django project getting no result

1👍

You need to just add path of the location where you settings.py file is present and then set environment variable to settings. Make the following change to your wsgi files.

sys.path.append('/home/Wedmod/www/djangojquerycontroller/Server')
os.environ["DJANGO_SETTINGS_MODULE"]="settings"

Leave a comment