Can I host a prisma backed app simpler than this? ...
# orm-help
t
Can I host a prisma backed app simpler than this? App has different subdomains for each customer, the same app server responds to them all but switches out the
prisma-client
(yoga server) that
apollo-client
connects to depending on the subdomain, each yoga server is a separate running instantiation of the same
yoga
codebase but points to a different
prisma-service
on the one
prisma-server
(is there a way to have one yoga server point to different endpoints like graphcool used to do via
/api/serviceId
?)… The
public
app engine service uses
nginx
and
s6
to manage running the front end app and many yoga servers on the same app engine… This diagram doesn’t even include the google cloud functions used for subscriptions or the google cloud storage used for the File API - what is the simpler way? I’m a front end developer, hence why I chose graph.cool originally… I’m totally open to suggestions for a proper, more scalable set up… most of the tutorials tell you how to get your prisma and yoga servers up but then leave it at that and don’t explain dealing with multiple endpoints, multiple apps, etc..
a
Interesting
😂 3