26 lines
640 B
Plaintext
26 lines
640 B
Plaintext
ENV=development # or production
|
|
|
|
BIND_ADDR=localhost:8888
|
|
|
|
# PostgreSQL connection string.
|
|
DATABASE_URL=
|
|
|
|
# Optional. If set, files in this location will be served over HTTP at /.
|
|
# Mostly useful for deployment.
|
|
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.
|
|
FILE_STORE=filesystem
|
|
|
|
# The base path for the file system store.
|
|
FILE_STORE_HTTP_ROOT=data/
|
|
|
|
# AWS credentials, required for the S3 store.
|
|
AWS_ACCESS_KEY_ID=
|
|
AWS_SECRET_ACCESS_KEY=
|
|
AWS_REGION=
|
|
S3_BUCKET=
|