Hi everyone,

Very much a Django newbie here, I'm trying to evaluate a few things 
before diving right in.

I was all set to write something in Ruby Rails, but the reason for 
looking at Django is because I also need python access to all the same 
data that the web app is dealing with. The Django database API seems 
great, but I can only easily run it on the web app server.

My question is how to package up and deploy the Django python code for 
external tools to access the database? I'm hoping to have the Django app 
sitting on the web server, with the source tree inaccessible to a bunch 
of workstations. The workstations need some command line tools for 
interacting with the database, and I don't want to have to bundle up the 
whole app and duplicate it out on the workstations, just so they can 
access the database API.

If I can access the whole app source code I can set the 
DJANGO_SETTINGS_MODULE env var and run python in a shell, and from there 
import my app's python module, and it all seems to work pretty well, but 
I'm looking for a more encapsulated/packaged way of deploying access to 
the database API without the whole app tree.

If anyone has any tips or online guides for this issue it would be much 
appreciated.

Cheers,
AC.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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