Re: How to trigger system check while running development server?

2020-03-04 Thread One Above All
Greetings, Using configure() didn't helped me much. I implemented settings validation checks by extending system checks and called that validation check function in tests. This does not required me to make Django Sever perform system checks again, On Fri, Feb 28, 2020 at 5:57 PM Naveen Arora wro

Re: How to trigger system check while running development server?

2020-02-28 Thread Naveen Arora
can you explain more with some code, the exact question .? Cheers, Naveen Arora On Thursday, 27 February 2020 20:01:00 UTC+5:30, One Above All wrote: > > I am updating a settings in my test which should raise exception on > illegal entries, but merely updating settings does not make django perfo

Re: How to trigger system check while running development server?

2020-02-27 Thread Mike Dewhirst
On 28/02/2020 1:31 am, One Above All wrote: I am updating a settings in my test which should raise exception on illegal entries, but merely updating settings does not make django perform system checks. Is there any method which I can call to trigger those checks? https://docs.djangoproject.co

Re: How to trigger system check while running development server?

2020-02-27 Thread Integr@te System
Hi Fr, If you have not yet found out module/method for you, so let try git action as on your dev phase with git repo. On Thu, Feb 27, 2020, 21:32 One Above All wrote: > I am updating a settings in my test which should raise exception on > illegal entries, but merely updating settings does not m

How to trigger system check while running development server?

2020-02-27 Thread One Above All
I am updating a settings in my test which should raise exception on illegal entries, but merely updating settings does not make django perform system checks. Is there any method which I can call to trigger those checks? -- You received this message because you are subscribed to the Google Grou

Re: running development server

2008-07-08 Thread Karen Tracey
Just use 0.0.0.0 and the dev server will listen on all interfaces. Karen --~--~-~--~~~---~--~~ 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 uns

Re: running development server

2008-07-08 Thread bruno desthuilliers
On 8 juil, 20:37, [EMAIL PROTECTED] wrote: > thnx, i got that, but the IP is that my machine's IP on the network, > or the network's IP? Should be your machine's IP address, of course. > i tried it with mine, made sure the port 8000 was open and did python > manage.py runserver IP:8000 and got t

Re: running development server

2008-07-08 Thread jorgehugoma
Chris, Are you using the IP address of your network interface? Jorge Hugo Murillo - Original Message From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: Django users Sent: Tuesday, July 8, 2008 2:37:02 PM Subject: Re: running de

Re: running development server

2008-07-08 Thread jorgehugoma
Chris, Are you using the IP address of your network interface? Jorge Hugo Murillo - Original Message From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: Django users Sent: Tuesday, July 8, 2008 2:37:02 PM Subject: Re: running de

Re: running development server

2008-07-08 Thread mccomas . chris
thnx, i got that, but the IP is that my machine's IP on the network, or the network's IP? i tried it with mine, made sure the port 8000 was open and did python manage.py runserver IP:8000 and got the server to initially start, but immediately after it displays the "Quit the server with CTRL-BREAK

Re: running development server

2008-07-08 Thread moos3
Also you could use mod_python or fastcgi so you can see how its going to act when deployed. On Jul 8, 2:30 pm, [EMAIL PROTECTED] wrote: > hey all, > > i'm trying to open up my development server to a couple of our other > staff members to help me start testing next week. to open up the > developm

Re: running development server

2008-07-08 Thread moos3
python manage.py runserver IP:PORT I hope that helps. On Jul 8, 2:30 pm, [EMAIL PROTECTED] wrote: > hey all, > > i'm trying to open up my development server to a couple of our other > staff members to help me start testing next week. to open up the > development server to others on our network, d

running development server

2008-07-08 Thread mccomas . chris
hey all, i'm trying to open up my development server to a couple of our other staff members to help me start testing next week. to open up the development server to others on our network, do i set runserver to my IP or the network's IP? chris --~--~-~--~~~---~--~~