19 lines
1.8 KiB
Plaintext
19 lines
1.8 KiB
Plaintext
# ─────────────────────────────────────────────────────────────────────────────
|
|
# Stripe — https://dashboard.stripe.com/apikeys
|
|
# ─────────────────────────────────────────────────────────────────────────────
|
|
NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY=pk_live_...
|
|
STRIPE_SECRET_KEY=sk_live_...
|
|
STRIPE_WEBHOOK_SECRET=whsec_...
|
|
|
|
# ─────────────────────────────────────────────────────────────────────────────
|
|
# Admin JWT (generate with: openssl rand -hex 32)
|
|
# ─────────────────────────────────────────────────────────────────────────────
|
|
ADMIN_JWT_SECRET=change_me_generate_with_openssl_rand_hex_32
|
|
|
|
# ─────────────────────────────────────────────────────────────────────────────
|
|
# Database — SQLite via libsql
|
|
# In Coolify: set to file:/app/prisma/lootah.db
|
|
# and mount /app/prisma as a persistent volume
|
|
# ─────────────────────────────────────────────────────────────────────────────
|
|
DATABASE_URL=file:./prisma/lootah.db
|