inventory/default.env

22 lines
No EOL
767 B
Bash

# override this with a long random string (used for CSRF protection)
INVENTORY_SECRET_KEY=""
# override with URL the service will be available under
INVENTORY_EXTERNAL_URL="https://inventory.example.com"
# override with URLs that are used to send POST requests here,
# the EXTERNAL_URL will be in there already, http and https
# will be added automatically, separate multiple origins with commas
INVENTORY_TRUSTED_ORIGINS="localhost"
# keep this to FALSE for deployments
INVENTORY_DEBUG="FALSE"
# if you want to run the service in another language, override this
INVENTORY_LANGUAGE="en-us"
# if you want the service to use local time then override this
INVENTORY_TIMEZONE="UTC"
# This is the default pagination size
INVENTORY_PAGE_SIZE="25"