Generate Environment Secrets
trunkUse these commands to generate secure random strings for your .env file:
echo "POSTGRESQL_PASSWORD=$(openssl rand -base64 42 | tr -dc A-Za-z0-9 | cut -c -32 | tr -d '\n')" > .env
echo "CORE_SECRET=$(openssl rand -base64 42 | tr -dc A-Za-z0-9 | cut -c -32 | tr -d '\n')" >> .envNote: The CORE_SECRET environment variable is required for Zipline to start.