2022-01-18 16:56:37 +00:00
|
|
|
CLIPPER_ENV=development # or production
|
2021-11-22 18:26:51 +00:00
|
|
|
|
2022-01-18 16:56:37 +00:00
|
|
|
CLIPPER_BIND_ADDR=localhost:8888
|
2021-12-04 05:14:41 +00:00
|
|
|
|
2022-01-27 19:40:33 +00:00
|
|
|
# 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=
|
|
|
|
|
2021-12-04 05:14:41 +00:00
|
|
|
# PostgreSQL connection string.
|
2022-01-18 16:56:37 +00:00
|
|
|
CLIPPER_DATABASE_URL=
|
2021-11-26 04:11:49 +00:00
|
|
|
|
2021-12-04 05:14:41 +00:00
|
|
|
# Optional. If set, files in this location will be served over HTTP at /.
|
|
|
|
# Mostly useful for deployment.
|
2022-01-18 16:56:37 +00:00
|
|
|
CLIPPER_ASSETS_HTTP_ROOT=
|
2021-12-08 19:58:13 +00:00
|
|
|
|
|
|
|
# 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.
|
2022-01-18 16:56:37 +00:00
|
|
|
CLIPPER_FILE_STORE=filesystem
|
2021-12-08 19:58:13 +00:00
|
|
|
|
2021-12-09 03:05:34 +00:00
|
|
|
# The base URL used for serving file store assets.
|
|
|
|
# Example: http://localhost:8888
|
2022-01-18 16:56:37 +00:00
|
|
|
CLIPPER_FILE_STORE_HTTP_BASE_URL=
|
2021-12-09 03:05:34 +00:00
|
|
|
|
|
|
|
# The root directory for the file system store.
|
2022-01-18 16:56:37 +00:00
|
|
|
CLIPPER_FILE_STORE_HTTP_ROOT=data/
|
2021-12-08 19:58:13 +00:00
|
|
|
|
|
|
|
# AWS credentials, required for the S3 store.
|
|
|
|
AWS_ACCESS_KEY_ID=
|
|
|
|
AWS_SECRET_ACCESS_KEY=
|
|
|
|
AWS_REGION=
|
2022-01-18 16:56:37 +00:00
|
|
|
CLIPPER_S3_BUCKET=
|
2022-01-05 18:49:21 +00:00
|
|
|
|
|
|
|
# The number of concurrent FFMPEG processes that will be permitted.
|
|
|
|
# Defaults to runtime.NumCPU():
|
2022-01-18 16:56:37 +00:00
|
|
|
CLIPPER_FFMPEG_WORKER_POOL_SIZE=
|