40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
CLIPPER_ENV=development # or production
|
|
|
|
CLIPPER_BIND_ADDR=localhost:8888
|
|
|
|
# Required if serving grpc-web, assets, etc from a different hostname.
|
|
# Multiple domains can be separated with commas.
|
|
#
|
|
# Example: http://localhost:3000
|
|
CLIPPER_CORS_ALLOWED_ORIGINS=
|
|
|
|
# PostgreSQL connection string.
|
|
CLIPPER_DATABASE_URL=
|
|
|
|
# Optional. If set, files in this location will be served over HTTP at /.
|
|
# Mostly useful for deployment.
|
|
CLIPPER_ASSETS_HTTP_ROOT=
|
|
|
|
# Set the store type - either s3 or filesystem. Defaults to filesystem. The S3
|
|
# store is recommended for production usage.
|
|
#
|
|
# NOTE: Enabling the file system store will disable serving assets over HTTP.
|
|
CLIPPER_FILE_STORE=filesystem
|
|
|
|
# The base URL used for serving file store assets.
|
|
# Example: http://localhost:8888
|
|
CLIPPER_FILE_STORE_HTTP_BASE_URL=
|
|
|
|
# The root directory for the file system store.
|
|
CLIPPER_FILE_STORE_HTTP_ROOT=data/
|
|
|
|
# AWS credentials, required for the S3 store.
|
|
AWS_ACCESS_KEY_ID=
|
|
AWS_SECRET_ACCESS_KEY=
|
|
AWS_REGION=
|
|
CLIPPER_S3_BUCKET=
|
|
|
|
# The number of concurrent FFMPEG processes that will be permitted.
|
|
# Defaults to runtime.NumCPU():
|
|
CLIPPER_FFMPEG_WORKER_POOL_SIZE=
|