Re: Encrypt entire Django project and decrypt in ram to start server.

2023-11-13 Thread Muhammad Juwaini Abdul Rahman
Don't use a shared server. A dedicated server is not that expensive anyway and 'cheaper' than having to encrypt (and decrypt on the fly) your code. On Mon, 13 Nov 2023 at 21:54, Om Khade wrote: > I want to save my Django project on a shared server in encrypted format > and build a script that d

Re: Django Rest framework

2023-11-13 Thread Lutaaya Jamil
You can correct me if I am wrong, but there is something to do with Cross-Origin Resource Sharing (CORS) in Django which somehow is set to prevent unauthorized domains from accessing information from another domain. So, I suggest if that is the issue, follow the steps that start by installing

Re: Encrypt entire Django project and decrypt in ram to start server.

2023-11-13 Thread Om Khade
Yes we also have a legal team working on this, we want to encrypt the code base so that the licencing logic is not tampered and is hard to bypass. On Mon, 13 Nov, 2023, 22:42 'Kasper Laudrup' via Django users, < django-users@googlegroups.com> wrote: > On 13/11/2023 06.15, Om Khade wrote: > > I wa

Re: Encrypt entire Django project and decrypt in ram to start server.

2023-11-13 Thread 'Kasper Laudrup' via Django users
On 13/11/2023 06.15, Om Khade wrote: I want to save my Django project on a shared server in encrypted format and build a script that decrypts the Django project files in ram and start the server so that code is not leaked or anyone is not able to tamper with it. Is there a way to do this?

Encrypt entire Django project and decrypt it in ram when starting server

2023-11-13 Thread Om Khade
I want to sell my Django product on a subscription basis to the client and set up the server on their server while ensuring that the code is not tampered with. For this I need a way to save the Django project in an encrypted format and Decrypt the files in RAM using a password that the client c

Encrypt entire Django project and decrypt in ram to start server.

2023-11-13 Thread Om Khade
I want to save my Django project on a shared server in encrypted format and build a script that decrypts the Django project files in ram and start the server so that code is not leaked or anyone is not able to tamper with it. Is there a way to do this? -- You received this message because you

Re: Django Rest framework

2023-11-13 Thread Denny (Python developer)
i need assistance on deployment maybe vercel is not working on my side On Monday, November 13, 2023 at 4:19:48 PM UTC+3 Vishesh Mangla wrote: > Use selenium > > On Mon, 13 Nov, 2023, 18:48 Vishesh Mangla, wrote: > >> Don't use postman for gui based login >> >> On Mon, 13 Nov, 2023, 18:25 Denn

Re: Django Rest framework

2023-11-13 Thread Vishesh Mangla
Use selenium On Mon, 13 Nov, 2023, 18:48 Vishesh Mangla, wrote: > Don't use postman for gui based login > > On Mon, 13 Nov, 2023, 18:25 Denny (Python developer), < > denniskinan...@gmail.com> wrote: > >> i think the the error is from vercel itself assist me my tech guys >> >> On Monday, November

Re: Django Rest framework

2023-11-13 Thread Vishesh Mangla
Don't use postman for gui based login On Mon, 13 Nov, 2023, 18:25 Denny (Python developer), < denniskinan...@gmail.com> wrote: > i think the the error is from vercel itself assist me my tech guys > > On Monday, November 13, 2023 at 3:54:29 PM UTC+3 Denny (Python developer) > wrote: > >> i hosted

Re: Django Rest framework

2023-11-13 Thread Denny (Python developer)
i think the the error is from vercel itself assist me my tech guys On Monday, November 13, 2023 at 3:54:29 PM UTC+3 Denny (Python developer) wrote: > i hosted my django application to vercel and am using free postgress > database from railway so when i try to register the user i get an error >

Re: Form does not import current data from data base

2023-11-13 Thread Stefan Kusmierz
Dear community, I'd like to inform you how I overcame the problem: instead of using "List.objects.last().a" to access field "a" of the last instance of class List, I did it like so: m=List.objects.last().pk List.objects.get(pk=m).a Best regards, Stefan Kani Sbt schrieb am Donnerstag, 26. Oktober