I'm currently hosting an app using the url x-myusername-x.pythonanywhere.com (which is working fine) but I am attempting to create a second app and am running into problems..
I've used the django tutorial to create another virtualenv and a new django app 002. No problems there.
When I create a new app in the Web tab, point it to the new virtual env 002 and run reload it gives me these warnings:
"There is a problem with your domain name configuration. Take a look at the DNS setup section below for details. Be aware that DNS changes can take some time to propagate across the internet. The exact time they take will depend on your domain configuration, but it could be as long as a day."
"You do not have a CNAME set up for your domain. Check this help page for more information about how to set it up correctly."
CNAME: webapp-xxxxxxx.pythonanywhere.com
How do I test my new app without creating my own domain?
Currently the cname url webapp-xxxxxxx.pythonanywhere.com says "Coming Soon...." when accessed through a browser.
Is this because I am required to set up my own domain or is there an activation step I'm missing in the django setup?
Thank you.