22 lines
1.6 KiB
Plaintext
22 lines
1.6 KiB
Plaintext
# ─── SuperAdmin server ports (see PORTS.md) ─────────────────────────────
|
|
SUPERADMIN_PORT=3002 # SuperAdmin API (superadmin/server/src/index.js)
|
|
|
|
# ─── SuperAdmin JWT / master keys ──────────────────────────────────────
|
|
SUPERADMIN_PRIVATE_KEY=-----BEGIN PRIVATE KEY-----\nMC4CAQAwBQYDK2VwBCIEI...REPLACE_ME...\n-----END PRIVATE KEY-----
|
|
SUPERADMIN_PUBLIC_KEY=-----BEGIN PUBLIC KEY-----\nMCowBQYDK2VwAyEAGB9...REPLACE_ME...\n-----END PUBLIC KEY-----
|
|
# Keep the literal \n escapes in SUPERADMIN_PRIVATE_KEY and SUPERADMIN_PUBLIC_KEY; the server replaces them with real newlines at load time.
|
|
|
|
SUPERADMIN_JWT_SECRET=replace-me-with-a-long-random-string
|
|
SUPERADMIN_MASTER_KEY=replace-me-with-a-master-key
|
|
|
|
# ─── SuperAdmin client Vite port (consumed by superadmin/client/vite.config.ts) ──
|
|
# VITE_PORT=3003 # set this in superadmin/client/.env
|
|
|
|
# ─── Supabase ──────────────────────────────────────────────────────────
|
|
SUPABASE_URL=https://api.next_gen.techarvest.co.zw
|
|
SUPABASE_KEY=replace-me-with-supabase-service-role-key
|
|
SUPERADMIN_SUPABASE_SERVICE_KEY=
|
|
|
|
# ─── Misc ──────────────────────────────────────────────────────────────
|
|
DB_PATH=
|