Hi Everyone,
I am new to django and python programming. I developed a facial recognition module in python using boto3 library. Currently I sued flask to create an API and test in my development environment but to move it to production i need to use django. Can you please help or point me in the right direction as to how do i do the below.
1. Take my facialrecognition.py file and convert it into an API, preferably using django.
2. Make this API to be pointing to a specific URL(locally on a windows machine).
3. Deploy this code into a production machine(windows).
4. Make sure that the API starts every time the windows machine starts to avoid loosing service.
Things i researched so far are:
1. How to create a django project with its REST library.
2. From the articles and tutorials i found out that this is only development version, to deploy in production i need a production server like Apache etc. is this necessary?
Thanks in Advance for your help.
Vamsi.