test_config.yaml 1.96 KB
Newer Older
muhammad-ammar committed
1 2
---
veda_s3_hotstore_bucket: s3_hotstore_bucket
3
veda_deliverable_bucket: s3_deliverable_bucket
4 5
edx_s3_ingest_prefix: ingest/
edx_s3_ingest_bucket: s3_ingest_bucket
6
edx_s3_endpoint_bucket: s3_deliverable_bucket
muhammad-ammar committed
7 8 9 10
multi_upload_barrier: 2000000000
veda_base_url: https://veda.edx.org
s3_base_url: https://s3.amazonaws.com

11
edx_cloudfront_prefix: test_cloudfront_prefix
muhammad-ammar committed
12 13

# transcript bucket config
14 15
aws_video_transcripts_bucket: bucket_name
aws_video_transcripts_prefix:  video-transcripts/
muhammad-ammar committed
16

17 18 19 20 21 22
# cielo24 api urls
cielo24_api_base_url: https://sandbox.cielo24.com/api

# 3playmedia api urls
three_play_api_base_url: https://api.3playmedia.com/
three_play_api_transcript_url: https://static.3playmedia.com/
muhammad-ammar committed
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40

# a token identifying a valid request from transcript provider
transcript_provider_request_token: 1234a5a67cr890

# ---
# VAL
# ---
val_api_url: http://val.edx.org/api
val_token_url: http://val.edx.org/token
val_video_images_url:
# Credentials
val_client_id: client
val_secret_key: secret
val_password: password
val_username: username
val_transcript_create_url: http://val.edx.org/transcript/create
val_video_transcript_status_url: http://val.edx.org/video/status

muzaffaryousaf committed
41 42 43
celery_worker_queue: encode_worker
celery_deliver_queue: deliver_worker

44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
# ----------
##---
# This is a list of encodes and their respective course
# boolean matches
encode_dict:
    review_proc:
        - review
    mobile_override:
        - override
    s3_proc:
        - mobile_high
        - mobile_low
        - audio_mp3
        - desktop_mp4
        - hls

    yt_proc:
        - youtube

muhammad-ammar committed
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
# This is a list of encode profiles and their val profile matches
# boolean matches
val_profile_dict:
    mobile_low:
        - mobile_low
    desktop_mp4:
        - desktop_mp4
    override:
        - desktop_mp4
        - mobile_low
        - mobile_high
    mobile_high:
        - mobile_high
    audio_mp3:
        - audio_mp3
    youtube:
        - youtube
    review:
    hls:
        - hls

84 85
global_timeout: 40

muhammad-ammar committed
86
instance_prefix: '127.0.0.1'