
This point generally will get people stuck, and may have a diagram. Remember – if you write your backend API in C Sharp then at dev time, you will be running it on a neighborhood web server, via your code editor. I.e. your frontend and backend are running on 2 completely different internet servers, in dev.
However, in manufacturing, your frontend must be operating on the SAME web server as your backend – mainly since you need them to run beneath the identical domain. From the start, you need to create a login with “Just Enough” entry. If your app solely reads and writes data, then it should authenticate to your database using a login with only information reading and writing entry. As you acquire more users, your database will grow to tens of millions of rows. Put some effort into how your database handles this extra quantity and load. … Read More


