Automatically create a subdomain and associate it with its own front-end (Reactjs) and back-end (django)

I'm trying to build a SaaS website. The user registers an account and then automatically creates a subdomain, and based on his plan, the main site automatically links it with a react js frontend and an independent backend using Django

After searching I found that I have to use the django_tenants library and Wildcard domain

But the problem is that this only achieves the first part, which is only the creation of the subdomain, and I did not find any way to transfer the files and the independence of the subdomain with its files

Back to Top