-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env
68 lines (47 loc) · 1.43 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# server port
PORT=8080
# secret key for URL signature
CYBERPUNK_SECRET=mysecret
# audio source(s) in the order to search for them (delimited by `:`)
# e.g. local:s3:audius
AUDIO_PATH=local
# local storage dir
LOCAL_STORAGE_BASE_DIR=testdata/
# enable local result storage by specifying directory
LOCAL_RESULTS_BASE_DIR=processed/
# aws credentials and region (required if s3 in audio_path)
AWS_ACCESS_KEY_ID=""
AWS_SECRET_ACCESS_KEY=""
AWS_REGION=us-east-1
# enable S3 loader by specifying bucket
S3_LOADER_BUCKET=mybucket
# optional
S3_LOADER_BASE_DIR=audio/
# enable S3 storage by specifying bucket
S3_STORAGE_BUCKET=mybucket
# optional
S3_STORAGE_BASE_DIR=audio/
# enable s3 result storage by specifying bucket
S3_RESULTS_STORAGE_BUCKET=mybucket
# optional
S3_RESULTS_STORAGE_BASE_DIR=audio/result
# gcp credentials (required if gcp in audio_path)
GOOGLE_APPLICATION_CREDENTIALS="/path/to/key"
# enable gcs loader by specifying bucket
GCS_LOADER_BUCKET=mybucket
# optional
GCS_LOADER_BASE_DIR=audio/
# enable gcp storage by specifying bucket
GCS_STORAGE_BUCKET=mybucket
# optional
GCS_STORAGE_BASE_DIR=audio/
# enable gcp result storage by specifying bucket
GCS_RESULTS_BUCKET=mybucket
# optional
GCS_RESULTS_BASE_DIR=audio/result
# Jaeger tracing and metrics exporting (opentelemetry)
JAEGER_TRACING_ENABLED=0
JAEGER_AGENT_HOSTNAME="jaeger"
JAEGER_AGENT_PORT=6831
# GCP tracing and metrics exporting (opentelemetry)
GCP_TRACING_ENABLED=0