Re: django built-in web server

2007-08-10 Thread Justin Johnson
I did spend some time looking at a third option - py2exe. In general this works really well and means you can package up with a single install. The only snag is that django has lots of dynamic imports which means you have to have a source file somewhere that imports statically. I ran out

Re: django built-in web server

2007-08-10 Thread TheMaTrIx
You could use something like XAMPP if your really unconfortable setting up apache and mysql by hand. Xampp's base install gives you apache and mysql preconfigured and there is a python addon thats also preconfigured. And if you can install and develop python/django apps, don't be to afraid of

Re: django built-in web server

2007-08-10 Thread Jay Parlar
On 8/10/07, james_027 <[EMAIL PROTECTED]> wrote: > > hi, > > Can I use the django's built in web server in an intranet enviroment > where the maximum users could be not more than 50 users? I am just > asking this for the purpose for easy deployment :). I am very newbie, > and trying to avoid

Re: django built-in web server

2007-08-10 Thread John Lee
I'm having a similar situation now. The requirement is to pack my web app so that an average user without programming or network administration background can easily install it on windows. I'm considering: 1) pack the whole apache with default conf + sqlite + python + django + my project as a

Re: django built-in web server

2007-08-10 Thread Justin Johnson
Apache is the easiest and most documented route. It is pretty easy to set-up and config so don't let that put you off. However, I had a situation where I needed a single self-contained install for deployment. On that occasion I used CherryPy3 + WSGI and ran the whole thing as a windows

Re: django built-in web server

2007-08-10 Thread Kenneth Gonsalves
On 10-Aug-07, at 1:19 PM, james_027 wrote: >> >>> I am very newbie, >>> and trying to avoid apache >> >> why? >> > > Just in case a problem occur, I think it could be more easy to > troubleshoot it without being a apache expert? Or if threre's a patch > for the client's program that need to be

Re: django built-in web server

2007-08-10 Thread Collin Grady
No, this will not work well at all. Django's dev server is single-threaded, and as such, nobody else could use it while it's serving a request - if even 2 people were browsing around at any speed, you'd start running into delays. Apache is easy. Use it :)

Re: django built-in web server

2007-08-10 Thread james_027
Hi, > > > I am very newbie, > > and trying to avoid apache > > why? > Just in case a problem occur, I think it could be more easy to troubleshoot it without being a apache expert? Or if threre's a patch for the client's program that need to be apply it could be much easier? THanks james

Re: django built-in web server

2007-08-10 Thread Kenneth Gonsalves
On 10-Aug-07, at 12:19 PM, james_027 wrote: > Can I use the django's built in web server in an intranet enviroment > where the maximum users could be not more than 50 users? I am just > asking this for the purpose for easy deployment :). sure > I am very newbie, > and trying to avoid apache

django built-in web server

2007-08-10 Thread james_027
hi, Can I use the django's built in web server in an intranet enviroment where the maximum users could be not more than 50 users? I am just asking this for the purpose for easy deployment :). I am very newbie, and trying to avoid apache THanks james

Re: Django built-in web server?

2005-12-21 Thread Michael Hipp
Joseph Kocherhans wrote: On 12/21/05, *Michael Hipp* <[EMAIL PROTECTED] > wrote: The documentation says "Django comes with its own Web server for development purposes." I'd like to use this for development and experimentation. But I can find

Re: Django built-in web server?

2005-12-21 Thread Joseph Kocherhans
On 12/21/05, Michael Hipp <[EMAIL PROTECTED]> wrote: The documentation says "Django comes with its own Web server for developmentpurposes." I'd like to use this for development and experimentation. But I canfind nothing about where it lives or how to configure and run it. Any pointers? You're

Django built-in web server?

2005-12-21 Thread Michael Hipp
The documentation says "Django comes with its own Web server for development purposes." I'd like to use this for development and experimentation. But I can find nothing about where it lives or how to configure and run it. Any pointers? Thanks, Michael