Re: DRF structure query

2019-06-11 Thread Andréas Kühne
Hi, The way we have structured our application is that we have our models and serializers in different apps, but have one app for the api itself. So all of the urls are in the "api/urls.py" file. We have found that this works great for us. However we don't use routers - instead we just use DRF c

DRF structure query

2019-06-11 Thread Dave B
Hi, Being fairly new to DRF, I'm just wondering on the best ways of going about stucturing an api which has man endpoints. Basically is there a good reason not to put different categories of endpoints together in different apps, like the ones for user data, ones for app data etc. And then how