# Copy to .env beside docker-compose.yml, then change every value below.
#
#   curl -o .env https://kitcommerce.store/env.example
#
# The compose file refuses to start rather than inventing defaults for these.
# A store that boots with a password somebody read on a website is not a
# convenience, it is an incident waiting for a public IP.

# Generate real ones:
#   openssl rand -hex 32
POSTGRES_PASSWORD=change-me-openssl-rand-hex-32
GOCOMMERCE_ADMIN_TOKEN=change-me-openssl-rand-hex-32

# The first operator. Created only while no operator exists, so leaving these
# set does not reset the password on every restart.
GOCOMMERCE_ADMIN_EMAIL=you@example.com
GOCOMMERCE_ADMIN_PASSWORD=a-password-you-choose

# Host port for the storefront-facing proxy. 80 by default.
PORT=80
