25 lines
845 B
Bash
25 lines
845 B
Bash
# Environment variables for Ghost development with docker compose
|
|
## Use this file by running `cp .env.example .env` and then editing the values as needed
|
|
|
|
# Docker Compose profiles to enable
|
|
## Run `docker compose config --profiles` to see all available profiles
|
|
## See https://docs.docker.com/compose/how-tos/profiles/ for more information
|
|
# COMPOSE_PROFILES=stripe
|
|
|
|
# Debug level to pass to Ghost
|
|
# DEBUG=
|
|
|
|
# Stripe keys - used to forward Stripe webhooks to Ghost
|
|
## Stripe Secret Key: sk_test_*******
|
|
# STRIPE_SECRET_KEY=
|
|
## Stripe Publishable Key: pk_test_*******
|
|
#STRIPE_PUBLISHABLE_KEY=
|
|
## Stripe Account ID: acct_1*******
|
|
#STRIPE_ACCOUNT_ID=
|
|
|
|
# Mailgun SMTP credentials - used with `yarn dev:mailgun`
|
|
## SMTP username from Mailgun (often starts with `postmaster@`)
|
|
# MAILGUN_SMTP_USER=
|
|
## SMTP password from Mailgun
|
|
# MAILGUN_SMTP_PASS=
|