ehsandotnet
ehsandotnet

Reputation: 1080

How to separate modules in Django enterprise application

I'm going to create a large scale web application using Django. It has 2 main parts website and API. also in API I have different modules(controller) like user, event and some other layers things like security, utility ... I'm looking for an enterprise architecture.

Upvotes: 0

Views: 265

Answers (1)

Simanas
Simanas

Reputation: 2793

Use django to create a website and then expose whatever you want with django-tastypie as an API: https://github.com/toastdriven/django-tastypie

Upvotes: 1

Related Questions