H
H
hikionori2020-11-12 19:00:55
Django
hikionori, 2020-11-12 19:00:55

Is it possible to write a Python Django server for mobile applications?

Can someone tell me how to write an https server for a mobile application in python Django

Answer the question

In order to leave comments, you need to log in

3 answer(s)
D
Dr. Bacon, 2020-11-12
@hikionori

learn Django, then deal with Django REST framework

S
Sergey Pankov, 2020-11-12
@trapwalker

As usual, like any other server.
You design the API, implement the necessary data models, create handlers for the API, set up CI / CD and deploy it on a server on the Internet, such as VDS. Among other things, install Nginx, which will wrap traffic in SSL and distribute static. The certificate can be obtained for free through Let's Encrypt. You just need to set up a special script (certbot) that will automatically renew this certificate once a month.
Who will go to your API there: a browser or a mobile application - it doesn’t matter.

D
dooMoob, 2020-11-12
@dooMoob

1. Can I
2. How to write? Just like any other Django server. To do this, go to read the documentation and guides

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question