I have a Django Project for which I am trying to find a way to deploy as a .war file.
My objective is
- to not reveal the source code during deployment
- to De-Couple Django App from Database and deploy as a .war file. This will help me to update the app without re-initializing database.
As Jython is not supported for Python3, is there an alternative? I also tried to create an exe through PyIntsaller but it acts as a malicious executable.