[Answer]-What is the format of the django config file for manage.py?

1👍

for some reason django uses an environment variable for this. you can set it in your settings if you want

import os
os.environ['DJANGO_LIVE_TEST_SERVER_ADDRESS'] = 'localhost:8000-9000'
👤second

Leave a comment