-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,27 @@ Requirements | |
|
||
* Developed to Django 1.7.1 | ||
|
||
Please add it in local_settings.py (you have to create it, in the same folder of settings): | ||
|
||
``` | ||
# -*- coding: utf-8 -*- | ||
EMAIL_HOST = '' | ||
EMAIL_HOST_PASSWORD = '' | ||
EMAIL_HOST_USER = 'youremail' | ||
EMAIL_PORT = 25 | ||
EMAIL_USE_TLS = True | ||
DEFAULT_FROM_EMAIL = "[email protected]" | ||
ADMINS = (('Luís Bastião', '[email protected]'), ) | ||
BASE_URL = "http://localhost:8000/" | ||
PROJECT_NAME = "Your project name" | ||
DOWNLOAD_FOLDER = "/dir/with/your/private/files" | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters