Skip to content

Commit

Permalink
Remove obsolete AWS_ACCESS_KEY settings
Browse files Browse the repository at this point in the history
  • Loading branch information
rstorey committed Oct 10, 2018
1 parent 6075197 commit 66906af
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 19 deletions.
3 changes: 0 additions & 3 deletions concordia/settings_dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@
AWS_STORAGE_BUCKET_NAME = S3_BUCKET_NAME
AWS_DEFAULT_ACL = None # Don't set an ACL on the files, inherit the bucket ACLs

AWS_ACCESS_KEY_ID = os.getenv("AWS_ACCESS_KEY_ID")
AWS_SECRET_ACCESS_KEY = os.getenv("AWS_SECRET_ACCESS_KEY")

MEDIA_URL = "https://%s.s3.amazonaws.com/" % S3_BUCKET_NAME

EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
Expand Down
3 changes: 0 additions & 3 deletions concordia/settings_prod.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@
AWS_STORAGE_BUCKET_NAME = S3_BUCKET_NAME
AWS_DEFAULT_ACL = None # Don't set an ACL on the files, inherit the bucket ACLs

AWS_ACCESS_KEY_ID = os.getenv("AWS_ACCESS_KEY_ID")
AWS_SECRET_ACCESS_KEY = os.getenv("AWS_SECRET_ACCESS_KEY")

MEDIA_URL = "https://%s.s3.amazonaws.com/" % S3_BUCKET_NAME

ELASTICSEARCH_DSL_AUTOSYNC = False
Expand Down
13 changes: 0 additions & 13 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
### Before running any Compose services, make sure you have an .env file
# inside your current folder and that it has been populated with the following content:
# CONCORDIA_ADMIN_PW=<concordia-admin-pw>
# POSTGRESQL_HOST=<localhost or a valid DNS name>
# POSTGRESQL_PW=<postgres-pw>
# EMAIL_HOST=<your_smtp_email_host_here>
# EMAIL_HOST_USER=<your_smtp_email_host_user_here>
# EMAIL_HOST_PASSWORD=<your_smtp_email_host_password_here>
# DEFAULT_FROM_EMAIL=<your_email_from_address_here>
# AWS_ACCESS_KEY_ID=<Refer_confluence_page>
# AWS_SECRET_ACCESS_KEY=<Refer_confluence_page>
# AWS_REGION=us-east-2

### Start Docker containers with the following command :
# sudo make up

Expand Down

0 comments on commit 66906af

Please sign in to comment.