-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
52 lines (44 loc) · 1.52 KB
/
.env.example
File metadata and controls
52 lines (44 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Database Configuration
# For local development (SQLite)
DB_DRIVER=sqlite
DB_NAME=commercify.db
# For production (PostgreSQL) - uncomment and configure these when using PostgreSQL
# DB_DRIVER=postgres
# DB_HOST=localhost
# DB_PORT=5432
# DB_USER=postgres
# DB_PASSWORD=postgres
# DB_NAME=commercify
# DB_SSL_MODE=disable
# Debug mode for database queries
DB_DEBUG=false
AUTH_JWT_SECRET=your_jwt_secret
EMAIL_ENABLED=true
EMAIL_SMTP_HOST=
EMAIL_SMTP_PORT=587
EMAIL_SMTP_USERNAME=
EMAIL_SMTP_PASSWORD=
# EMAIL_FROM_ADDRESS, in most cases should be the same as EMAIL_SMTP_USERNAME
EMAIL_FROM_ADDRESS=
EMAIL_FROM_NAME=Commercify
# The email the should receive notification when new orders are made.
EMAIL_ADMIN_ADDRESS=dev@zenfulcode.com
# Contact email address for support, used in emails
EMAIL_CONTACT_ADDRESS=dev@commercify.app
STRIPE_ENABLED=true
STRIPE_SECRET_KEY=sk_test_your_key
STRIPE_PUBLIC_KEY=pk_test_your_key
STRIPE_WEBHOOK_SECRET=whsec_your_webhook_signing_secret
STRIPE_PAYMENT_DESCRIPTION=Commercify Store Purchase
MOBILEPAY_ENABLED=false
MOBILEPAY_TEST_MODE=true
MOBILEPAY_MERCHANT_SERIAL_NUMBER=your_merchant_serial_number
MOBILEPAY_SUBSCRIPTION_KEY=your_subscription_key
MOBILEPAY_CLIENT_ID=your_client_id
MOBILEPAY_CLIENT_SECRET=your_client_secret
MOBILEPAY_WEBHOOK_URL=https://your-site.com/api/webhooks/mobilepay
MOBILEPAY_PAYMENT_DESCRIPTION=Commercify Store Purchase
RETURN_URL=https://your-site.com/payment/complete
CORS_ALLOWED_ORIGINS=http://localhost:3000,http://localhost:5173
# Used in emails and UI
STORE_NAME=Commercify Store