You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a file called `.env` that contains environment variables in the following syntax: `ENVIRONMENT_VARIABLE=value`. For example,
52
-
the mailing environment variables can be set as the following
63
+
the mailing environment variables can be set as the following. We recommend using Sendgrid for a mailing SMTP server. But anything else will work as well.
53
64
```
54
-
MAIL_USERNAME=example@domain.com
55
-
MAIL_PASSWORD=SuperSecretPassword
65
+
MAIL_USERNAME=SendgridUsername
66
+
MAIL_PASSWORD=SendgridPassword
56
67
SECRET_KEY=SuperRandomStringToBeUsedForEncryption
57
68
```
58
69
**Note: do not include the `.env` file in any commits. This should remain private.**
@@ -115,82 +126,6 @@ $ foreman start -f Local
115
126
116
127
Before you submit changes to flask-base, you may want to auto format your code with `python manage.py format`.
0 commit comments