-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
48 lines (35 loc) · 1.57 KB
/
.env.example
File metadata and controls
48 lines (35 loc) · 1.57 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
# Plugin Delivery Environment Variables
# Copy this file to .env and fill in your values
# =============================================================================
# REQUIRED - Core Configuration
# =============================================================================
# Your plugin index base URL
PLUGIN_INDEX_URL=https://plugin.delivery
# Gateway service URL
GATEWAY_URL=https://gateway.plugin.delivery
# =============================================================================
# OPTIONAL - API Keys for Built-in Plugins
# =============================================================================
# CoinGecko API (optional - free tier works without key)
# COINGECKO_API_KEY=your_api_key
# DexScreener API (optional)
# DEXSCREENER_API_KEY=your_api_key
# =============================================================================
# DEPLOYMENT - Vercel
# =============================================================================
# Vercel deployment tokens (for CI/CD)
# VERCEL_TOKEN=your_token
# VERCEL_ORG_ID=your_org_id
# VERCEL_PROJECT_ID=your_project_id
# =============================================================================
# DEPLOYMENT - NPM Publishing
# =============================================================================
# NPM token for publishing @sperax packages
# NPM_TOKEN=your_npm_token
# =============================================================================
# DEVELOPMENT
# =============================================================================
# Enable debug logging
# DEBUG=true
# Local development port
# PORT=3000