Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

Basically, after setting up my server following this and now I have connected my domain, for example, example.com and also the wild card sub domain *.example.com and now I want flask to handle the sub domain, so if someone went to dev.example.com it would be able to have a different page from test.example.com.
@app.route("/")
def hello_world():
return render_template("index.html")
@app.route("/", subdomain="dev")
def dev_world():
return "This is the Development Area"
that is basically the current code, however, going to any subdomain, always links back to the example.com/ not the subdomain directory. thank you for any help!
santoshpatil
crisdan
KFSys
Andrew J Montanus
nashurgessa
blueviolet
Ibrahim Mudassar
288dccdbfd934607b6f223b33b9d92
TinyLightSeaGreenShrimp
AdorableCeruleanEel
Bobby