2021-11-22 19:26:51 +01:00
|
|
|
ENV=development # or production
|
|
|
|
|
2021-12-04 06:14:41 +01:00
|
|
|
BIND_ADDR=localhost:8888
|
|
|
|
|
|
|
|
# PostgreSQL connection string.
|
2021-11-01 06:28:40 +01:00
|
|
|
DATABASE_URL=
|
2021-11-26 05:11:49 +01:00
|
|
|
|
2021-12-04 06:14:41 +01:00
|
|
|
# Optional. If set, files in this location will be served over HTTP at /.
|
|
|
|
# Mostly useful for deployment.
|
2021-12-09 03:38:38 +01:00
|
|
|
ASSETS_HTTP_ROOT=
|
2021-12-08 20:58:13 +01: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.
|
|
|
|
FILE_STORE=filesystem
|
|
|
|
|
2021-12-09 04:05:34 +01:00
|
|
|
|
|
|
|
# The base URL used for serving file store assets.
|
|
|
|
# Example: http://localhost:8888
|
|
|
|
FILE_STORE_HTTP_BASE_URL=
|
|
|
|
|
|
|
|
# The root directory for the file system store.
|
2021-12-09 03:38:38 +01:00
|
|
|
FILE_STORE_HTTP_ROOT=data/
|
2021-12-08 20:58:13 +01:00
|
|
|
|
|
|
|
# AWS credentials, required for the S3 store.
|
|
|
|
AWS_ACCESS_KEY_ID=
|
|
|
|
AWS_SECRET_ACCESS_KEY=
|
|
|
|
AWS_REGION=
|
|
|
|
S3_BUCKET=
|