Re: Distributing application

2010-04-29 Thread Baurzhan Ismagulov
On Thu, Apr 29, 2010 at 04:37:09AM -0700, Mag wrote: > I was wondering what is the best way to distribute my application? IMHO, the best way is the native way of your target platform. I.e., MSI for Windows, rpm for RedHat, etc. I'd also bundle dependencies together with the app. With kind

Re: Distributing application

2010-04-29 Thread Dexter
What do you mean by distributing your app? getting people to view it?, or having your clients running their own server. If you want people to view it, you have to deploy a django installation somewhere with your app. Else, if you want you clients to have each their own app, theyll have to have

Distributing application

2010-04-29 Thread Mag
I have been using Django and I like it a lot. I was wondering what is the best way to distribute my application? Previously, with Apache tomcat it was very easy to distribute it. I provided the tomcat server and the war file and everything was done. Is there a tool or a preferred way to do this?