Reputation: 808
As described in the title I am using Django as the server end for an IOS app I am building.
Lets assume theoretically that I was to reach 1 million users. Would it be more effective/efficient to build my own REST Api for user accounts on top of Django, or use something like Parse?
How would I build a scalable production-ready user account system with Django? (With user tokens and all).
Thanks.
Upvotes: 1
Views: 722
Reputation: 2569
Don't prematurely optimize.
You'll eventually reach 1 million users with your app, but it's always a good idea to worry about such great numbers later.
In the meantime, you need 2 apps (if you want to use oauth2):
You'll then have to wire all together. This blogpost is a good starting point.
Upvotes: 3