|
| 1 | +# Plugin Delivery Environment Variables |
| 2 | +# Copy this file to .env and fill in your values |
| 3 | + |
| 4 | +# ============================================================================= |
| 5 | +# REQUIRED - Core Configuration |
| 6 | +# ============================================================================= |
| 7 | + |
| 8 | +# Your plugin index base URL |
| 9 | +PLUGIN_INDEX_URL=https://plugin.delivery |
| 10 | + |
| 11 | +# Gateway service URL |
| 12 | +GATEWAY_URL=https://gateway.plugin.delivery |
| 13 | + |
| 14 | +# ============================================================================= |
| 15 | +# OPTIONAL - API Keys for Built-in Plugins |
| 16 | +# ============================================================================= |
| 17 | + |
| 18 | +# CoinGecko API (optional - free tier works without key) |
| 19 | +# COINGECKO_API_KEY=your_api_key |
| 20 | + |
| 21 | +# DexScreener API (optional) |
| 22 | +# DEXSCREENER_API_KEY=your_api_key |
| 23 | + |
| 24 | +# ============================================================================= |
| 25 | +# DEPLOYMENT - Vercel |
| 26 | +# ============================================================================= |
| 27 | + |
| 28 | +# Vercel deployment tokens (for CI/CD) |
| 29 | +# VERCEL_TOKEN=your_token |
| 30 | +# VERCEL_ORG_ID=your_org_id |
| 31 | +# VERCEL_PROJECT_ID=your_project_id |
| 32 | + |
| 33 | +# ============================================================================= |
| 34 | +# DEPLOYMENT - NPM Publishing |
| 35 | +# ============================================================================= |
| 36 | + |
| 37 | +# NPM token for publishing @sperax packages |
| 38 | +# NPM_TOKEN=your_npm_token |
| 39 | + |
| 40 | +# ============================================================================= |
| 41 | +# DEVELOPMENT |
| 42 | +# ============================================================================= |
| 43 | + |
| 44 | +# Enable debug logging |
| 45 | +# DEBUG=true |
| 46 | + |
| 47 | +# Local development port |
| 48 | +# PORT=3000 |
0 commit comments