I’m new to Django…
I will develop a web application that will have subdomains like “us.mysite.com”, “uk.mysite.com”, “es.mysite.com”. I have many doubts about the better way of doing this in Django…
Should I design my Django project by Apps like this:
mysite_project
--> uk_app
--> us_app
--> es_app
If not, what should I do? One Django Projecto for each subdomain?
Best Regards,
Read Using Subdomains in Django.