Re: django deploy on IIS

2022-09-10 Thread jayson lauwerends
I would really appreciate it. if you help me. What must I do. On Sat, Sep 10, 2022 at 8:36 PM Nemani Srinivas Murthy wrote: > I can help you with this, as I have deployed all my django apps on IIS. > > On Sun, 11 Sep 2022 at 2:29 AM, Paul Kudla (SCOM.CA Internet Services > Inc.) wrote: > >> >>

Re: django deploy on IIS

2022-09-10 Thread Nemani Srinivas Murthy
I can help you with this, as I have deployed all my django apps on IIS. On Sun, 11 Sep 2022 at 2:29 AM, Paul Kudla (SCOM.CA Internet Services Inc.) wrote: > > Ok please do not take this the wrong way . > > this comes from 20+ years of experience of all the different platforms. > > windows is

Re: django deploy on IIS

2022-09-10 Thread jayson lauwerends
Hi Paul, I am doing this because my internship and the company is familiar with IIS but not with Django. I will try other things first to try to get this server to work. I understand your point. If i don't get close to giving up i will ask if i can deploy it on another server. regards. Jayson de

Re: django deploy on IIS

2022-09-10 Thread Paul Kudla (SCOM.CA Internet Services Inc.)
Ok please do not take this the wrong way . this comes from 20+ years of experience of all the different platforms. windows is good for microsoft office etc, they have kinda set the standard in day to day useage to run a business. however production servers today are almost entirle

Re: Django deploy Apache

2022-05-18 Thread Kasper Laudrup
On 13/05/2022 13.56, Nicolas Passarini wrote: Hello, i ve deployed a django app in apache. the problem is that i works for 5 minutes and then it stops responding. That sucks. Sounds like you have some issues you need to look into. Good luck. Kind regards, Kasper Laudrup -- You received t

Re: django deploy structure

2013-06-28 Thread coded kid
Man, use GIT. Push to your git repo. Clone from git through your production server. It's easy to do. Hope this helps? :) On Thursday, 27 June 2013 09:08:13 UTC+1, Mulianto wrote: > > Hi, > > If cannot use git, for copy the source you can use rsync or use fabric to > selective upload the file and

Re: django deploy structure

2013-06-27 Thread mulianto
Hi, If cannot use git, for copy the source you can use rsync or use fabric to selective upload the file and reload the app. But easier using GIT Sent from my iPhone On 27 Jun 2013, at 08:15, Nick Apostolakis wrote: > You could use a code versioning system like git or bazaar.when you want to

Re: django deploy structure

2013-06-26 Thread Nick Apostolakis
You could use a code versioning system like git or bazaar.when you want to deploy just pull from your repository Στις 26 Ιουν 2013 8:46 μ.μ., ο χρήστης "fred" έγραψε: > I've got django 1.5 deploying successfully to a Linux Apache system with > mod_wsgi. This system is still being developed and

Re: Django Deploy - Some Questions regarding it

2012-01-30 Thread akaariai
I don't know much about nginx, but here are some pointers: First, this page seems good source of information: https://code.djangoproject.com/wiki/DjangoAndNginx Now, take note of the "location /site_media" directive in the above link. This is basically telling the server that when there is a requ

Re: Django Deploy Updates App.

2011-03-16 Thread Mike Dewhirst
Matteius Check Ryan Kelly's esky - http://pypi.python.org/pypi/esky This is for "frozen" python apps but the principle you describe is central to esky. Mike On 17/03/2011 1:36pm, Matteius wrote: One of the things I've considered lately that I would like for my Django project is a Word Press

Re: django deploy problem

2009-09-11 Thread Graham Dumpleton
On Sep 11, 7:05 pm, Mike Ramirez wrote: > On Friday 11 September 2009 01:52:10 lfrodrigues wrote: > > > > > > > Hi, > > > I want to deploy 2 django sites in different subdirectories so I have: > > > > >   > >       SetHandler python-program > >       PythonHandler django.core.handlers.modpyth

Re: django deploy problem

2009-09-11 Thread Mike Ramirez
On Friday 11 September 2009 01:52:10 lfrodrigues wrote: > Hi, > > I want to deploy 2 django sites in different subdirectories so I have: > > > > SetHandler python-program > PythonHandler django.core.handlers.modpython > SetEnv DJANGO_SETTINGS_MODULE admin.settings > Pyth

Re: django deploy problem

2009-09-11 Thread Kenneth Gonsalves
On Friday 11 Sep 2009 2:22:10 pm lfrodrigues wrote: > When I go to http://host/admin/url/whatever sometimes sometimes it > works ok, sometimes I get a "page no found" error from the other > application " Using the URLconf defined in webservice.urls, ... " > > Any ideas why the applications are ove

Re: Django Deploy

2008-07-21 Thread DoctorMO
Hey Graham, Well... at the moment it targets mod_python, but there isn't any reason for such deployment options not to be added so it calculates the dependencies and configs based on those choices. I was trying to make sure there was room for postgress, other httpd servers and other kinds of sett

Re: Django Deploy

2008-07-20 Thread Graham Dumpleton
Are you targeting mod_python or mod_wsgi? On Jul 21, 8:33 am, DoctorMO <[EMAIL PROTECTED]> wrote: > Hey all, > > In order to deploy multiple django based websites I've created a set > of scripts which build the setup.py and debian directory for deb based > deployment of django websites. At the mo