Re: DEBUG=False but still "Starting development server" ?!

2018-08-15 Thread ireoluwa fakeye
No it doesn't . It's clearly stated that it's only when you deploying the app that you should set debug to false this would not make any error show On Wed, 15 Aug 2018, 19:49 Richard Belew, wrote: > following https://docs.djangoproject.com/en/2.1/ref/settings/#debug > i believe changing

Re: DEBUG=False but still "Starting development server" ?!

2018-08-15 Thread Julio Biason
Hi Richard, No, that just suppresses the DEBUG messages, either in logs as in views. To have a production server, you need to deploy with wsgi: https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/ . On Wed, Aug 15, 2018 at 3:48 PM, Richard Belew wrote: > following

Re: DEBUG=False but still "Starting development server" ?!

2018-08-15 Thread Richard Belew
following https://docs.djangoproject.com/en/2.1/ref/settings/#debug i believe changing `settings.DEBUG` to `False` should make it a production server? On Wednesday, August 15, 2018 at 11:39:54 AM UTC-7, ireoluwa fakeye wrote: > > I'm confused on what the problem is .as long as it's a

Re: DEBUG=False but still "Starting development server" ?!

2018-08-15 Thread ireoluwa fakeye
I'm confused on what the problem is .as long as it's a development server it will still show the above configuration On Wed, 15 Aug 2018, 19:33 Richard Belew, wrote: > yup, restarted apache. still development(: > > On Wednesday, August 15, 2018 at 11:26:03 AM UTC-7, ireoluwa fakeye wrote:

Re: DEBUG=False but still "Starting development server" ?!

2018-08-15 Thread Richard Belew
yup, restarted apache. still development(: On Wednesday, August 15, 2018 at 11:26:03 AM UTC-7, ireoluwa fakeye wrote: > > You have to restart the application or restart the server as the case > may be > > > -- You received this message because you are subscribed to the Google Groups

Re: DEBUG=False but still "Starting development server" ?!

2018-08-15 Thread ireoluwa fakeye
You have to restart the application or restart the server as the case may be On Wed, 15 Aug 2018, 19:23 Richard Belew, wrote: > i've set DEBUG=False, and also echo its value at the end of my settings.py > file to confirm it's been set correctly. > Still I get: > > Django version 2.1, using

DEBUG=False but still "Starting development server" ?!

2018-08-15 Thread Richard Belew
i've set DEBUG=False, and also echo its value at the end of my settings.py file to confirm it's been set correctly. Still I get: Django version 2.1, using settings 'showCrime.settings' > Starting development server at ... > why would that be?! -- You received this message because you are