You should consider these
1. Use Sqlite as your RDBMS: It requires no configuration at all

2. Use django test server: You don't need a high performance web server because 
the number of users is limited. Guido van Rossum used the test server for 
internal Google application

3. Configure the working IP: If you want the application to be available for 
multiple users, use something like

manage.py runserver WWW.ZZZ.XXX.YYY:8000

where WWW.ZZZ.XXX.YYY is the IP you want to use.

4. Of course you don't want a black pop-up window to appear for you users. You 
should write a launcher script to launch the server & the browser


 
---------------------------------
Need a quick answer? Get one in minutes from people who know. Ask your question 
on Yahoo! Answers.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to