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

2023-11-14 Thread Sebastian Jung
I think this here are a good solution where you can build all files as .so files which i think are c files. https://stackoverflow.com/questions/32577864/cython-for-a-django-app-would-it-work Daniel Martinez schrieb am Di., 14. Nov. 2023, 15:17: > A solution for that is add a IP blocker in your

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

2023-11-14 Thread Daniel Martinez
A solution for that is add a IP blocker in your server to avoid brutal forces attacks that way you can use. Or a tool for monitoring you traffic such Snoft. Happy coding  On Mon, Nov 13, 2023, 6:54 AM Om Khade wrote: > I want to save my Django project on a shared server in encrypted format >

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

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

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 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: Don`t start server

2019-04-24 Thread Suresh Kannan
Hi, Hope this helps. >>>*django.core.exceptions.ImproperlyConfigured: SQLite 3.8.3 or later is required (found 3.7.17).* https://stackoverflow.com/questions/55512244/no-installed-app-with-label-admin-in-empty-django-2-2-project On Tue, Apr 23, 2019 at 3:10 PM TAIT_MIZO wrote: >

Don`t start server

2019-04-23 Thread TAIT_MIZO
(steam_trader) -bash-4.2$ python manage.py runserver Watching for file changes with StatReloader Exception in thread Thread-1: Traceback (most recent call last): File "/opt/komtet/python35/lib/python3.5/threading.py", line 914, in _bootstrap_inner self.run() File

Re: Newbie question, start server with hostname

2017-02-08 Thread Dylan Reinhold
You don't include the http:// python manage.py runserver hostname:8000 or put the IP address in the hostname area/ Dylan On Wed, Feb 8, 2017 at 12:29 PM, hippohippo <hzh...@mail.dfci.harvard.edu> wrote: > Dear all, > > I am a new comer on Django. I was able to to run start se

Newbie question, start server with hostname

2017-02-08 Thread hippohippo
Dear all, I am a new comer on Django. I was able to to run start server by command as below yesterday. python manage.py runserver http:/hostname:8000 However today, it submit the error as CommandError: "http://te172.24.221.137:8000/; is not a valid port number or address:port pair.

Re: static list and start server process

2009-10-29 Thread Javier Guerra
On Thu, Oct 29, 2009 at 7:48 AM, Manuel Ignacio <maigf...@gmail.com> wrote: > Hello, i have a menu list stored at my database, i want to obtain it > only at start server process, and later when add a menu > entry this list should be updated, i have the following > consideratio

static list and start server process

2009-10-29 Thread Manuel Ignacio
Hello, i have a menu list stored at my database, i want to obtain it only at start server process, and later when add a menu entry this list should be updated, i have the following considerations: 1. I don't want a database query for every request, because menu entry list would be very low

Re: Start server

2008-06-18 Thread Molly
Yeah, sure.. I am still having some difficulties so it may take some time! I have everything working except for the css is messed up when I create an exe, so I am working on that. Also, I think I want to change my server to cherrypy like you did.. still have to figure that all out though. I'll

Re: Start server

2008-06-17 Thread Joseph
Molly: When you get through, mind if you could share the code? Thank you, Joseph http://www.jjude.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: Start server

2008-06-17 Thread Molly
Thanks so much guys! :) On Jun 16, 7:43 pm, "Oscar Carlsson" <[EMAIL PROTECTED]> wrote: > No, you don't have to load everything by hand - there is another way :) > > http://superjared.com/entry/django-and-crontab-best-friends/ > > Oscar > > On Mon, Jun 16, 2008 at 11:33 PM, Karen Tracey <[EMAIL

Re: Start server

2008-06-16 Thread Oscar Carlsson
No, you don't have to load everything by hand - there is another way :) http://superjared.com/entry/django-and-crontab-best-friends/ Oscar On Mon, Jun 16, 2008 at 11:33 PM, Karen Tracey <[EMAIL PROTECTED]> wrote: > On Mon, Jun 16, 2008 at 3:50 PM, Molly <[EMAIL PROTECTED]> wrote: > >> >> Hey

Re: Start server

2008-06-16 Thread Karen Tracey
On Mon, Jun 16, 2008 at 3:50 PM, Molly <[EMAIL PROTECTED]> wrote: > > Hey guys, > > I created an app and I am trying to launch the server through my > pyweb.py code since I will eventually, when this gets working be > putting it on a different drive for other computers with different > servers to

Start server

2008-06-16 Thread Molly
Hey guys, I created an app and I am trying to launch the server through my pyweb.py code since I will eventually, when this gets working be putting it on a different drive for other computers with different servers to use. My code works, but when i create a py2exe and i run it, i get an error.

Re: Can't start server with runfcgi

2006-12-01 Thread jacobm
I know the builtin http server isn't intended for production use, but does anyone know what problems I would likely run into if I proxied dynamic content URI's from apache to the django dev http server? This particular project is going to be very lightly used... typically only a handful of

Can't start server with runfcgi

2006-11-30 Thread jacobm
Hi, I'm trying to start a project using fastcgi and am having some problems. (mod_python doesn't want to build on this Solaris 8 box for some reason.) The current problem I'm facing is that the generated manage.py script doesn't have a runfcgi option. When I try "./manage.py runfcgi" it