Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bookshare
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
30
Issues
30
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
SRCT
bookshare
Commits
9372d0a3
Commit
9372d0a3
authored
Jan 09, 2017
by
Daniel W Bond
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
separated out django smtp settings from SES settings
parent
15984791
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
7 deletions
+11
-7
bookshare/settings/secret.py.template
bookshare/settings/secret.py.template
+11
-7
No files found.
bookshare/settings/secret.py.template
View file @
9372d0a3
...
...
@@ -19,16 +19,20 @@ DB_PORT = ''
# configurations for your piwik tracking server
# if you do not set these, the tracking js will silently break
PIWIK_SITE_ID = ''
PIWIK_URL = ''
PIWIK_URL = 'https://piwik.srct.gmu.edu/'
# configurations to send email via Django's smtplib
HOST_EMAIL_USER = ''
HOST_EMAIL_PASSWORD = ''
# configurations to send email via Amazon SES
# if you do not set these, you simply won't be able to mark listings exchanged
EMAIL
_HOST = 'email-smtp.region-code.amazonaws.com'
EMAIL_HOST
_USER = 'ses-smtp-username'
EMAIL_HOST
_PASSWORD = 'ses-smtp-password'
SES
_HOST = 'email-smtp.region-code.amazonaws.com'
SES
_USER = 'ses-smtp-username'
SES
_PASSWORD = 'ses-smtp-password'
# configurations to upload user media to Amazon S3
# these settings will not matter if MEDIA_S3 is set to False in settings.py
AWS_STORAGE
_BUCKET_NAME = 'my-bucket'
AWS
_ACCESS_KEY_ID = ''
AWS
_SECRET_ACCESS_KEY = ''
S3
_BUCKET_NAME = 'my-bucket'
S3
_ACCESS_KEY_ID = ''
S3
_SECRET_ACCESS_KEY = ''
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment