Skip to content
Snippets Groups Projects
Verified Commit 2c8be4d2 authored by Daniel Bessey's avatar Daniel Bessey
Browse files

Add settings to fabfile for test deployement

parent 9e70d51e
Branches
No related merge requests found
Pipeline #356602 passed with stage
in 4 minutes and 48 seconds
......@@ -135,6 +135,8 @@ def test():
'mongodb_password': 'MONGODB_PASSWORD',
'mongodb_host': 'MONGODB_HOST',
'mongodb_database': 'MONGODB_DATABASE',
'cantaloupe_s3source_basiclookupstrategy_bucket_name': 'CANTALOUPE_S3SOURCE_BASICLOOKUPSTRATEGY_BUCKET_NAME',
'cantaloupe_iiif_upstream_url': 'CANTALOUPE_IIIF_UPSTREAM_URL',
}
env.release_name = sentry.get_release_name()
execute(build_env)
......
......@@ -124,5 +124,5 @@ REST_FRAMEWORK["DEFAULT_AUTHENTICATION_CLASSES"] = [
##############
# CANTALOUPE #
##############
CANTALOUPE_S3SOURCE_BASICLOOKUPSTRATEGY_BUCKET_NAME = environ.get("CANTALOUPE_S3SOURCE_BASICLOOKUPSTRATEGY_BUCKET_NAME", "pount-iiif-test")
CANTALOUPE_IIIF_UPSTREAM_URL = environ.get("CANTALOUPE_IIIF_UPSTREAM_URL", "http://cantaloupe-test-1.srv.unistra.fr:8182/iiif/")
CANTALOUPE_S3SOURCE_BASICLOOKUPSTRATEGY_BUCKET_NAME = "{{ cantaloupe_s3source_basiclookupstrategy_bucket_name }}"
CANTALOUPE_IIIF_UPSTREAM_URL = "{{ cantaloupe_iiif_upstream_url }}"
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment