forked from netlify/gocommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.env
20 lines (20 loc) · 849 Bytes
/
example.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
GOCOMMERCE_SITE_URL=https://my-jam-store.example.com
GOCOMMERCE_JWT_SECRET="CHANGE-THIS! VERY IMPORTANT!"
GOCOMMERCE_DB_DRIVER=sqlite3
GOCOMMERCE_DB_AUTOMIGRATE=true
DATABASE_URL=gorm.db
GOCOMMERCE_API_HOST=localhost
PORT=9111
GOCOMMERCE_MAILER_HOST=smtp.mandrillapp.com
GOCOMMERCE_MAILER_PORT=587
GOCOMMERCE_MAILER_USER=test@example.com
GOCOMMERCE_MAILER_PASS=super-secret-password
GOCOMMERCE_MAILER_SUBJECTS_ORDER_CONFIRMATION="Thank you for your order!"
GOCOMMERCE_MAILER_SUBJECTS_ORDER_RECEIVED="A new order has been placed"
GOCOMMERCE_PAYMENT_STRIPE_ENABLED=true
GOCOMMERCE_PAYMENT_STRIPE_PUBLIC_KEY=stripe_public_key
GOCOMMERCE_PAYMENT_STRIPE_SECRET_KEY=stripe_secret_key
GOCOMMERCE_PAYMENT_PAYPAL_ENABLED=false
GOCOMMERCE_PAYMENT_PAYPAL_CLIENT_ID=client-id
GOCOMMERCE_PAYMENT_PAYPAL_SECRET=client-secret
GOCOMMERCE_PAYMENT_PAYPAL_ENV=sandbox