Re: Separating remote vs local settings.py parameters - - “EMAIL”?

2019-03-16 Thread drone4four
So the remote server production email contact information could be different from the developer’s testcase email contact info? I’ve taken a closer look at the “email-backend” section of the Django docs that you’ve linked to, Ahmed. I see Django supports email settings. I don’t really underst

Re: Separating remote vs local settings.py parameters - - “EMAIL”?

2019-03-16 Thread Ahmed Ishtiaque
If you don't need to send e-mail to your users then it's best not to specify any of the EMAIL_* settings. You can change the backend you use to send email with using EMAIL_BACKEND variable. This can be useful when you're tring to test your email format and such while developing your app. The dj

Re: Separating remote vs local settings.py parameters - - “EMAIL”?

2019-03-16 Thread Phillip Moracha
If you take a look at this gist provided by a Udemy instructor and at this specific location , here he wisely recommends separating important local development configuration parameters, such as SECRET _KEY.