-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
26 lines (21 loc) · 925 Bytes
/
.env.example
File metadata and controls
26 lines (21 loc) · 925 Bytes
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
# Stripe API Configuration
# Get your API keys from: https://dashboard.stripe.com/apikeys
STRIPE_SECRET_KEY=sk_test_your_secret_key_here
STRIPE_PUBLISHABLE_KEY=pk_test_your_publishable_key_here
# Stripe Webhook Secret
# Get this from: https://dashboard.stripe.com/webhooks
STRIPE_WEBHOOK_SECRET=whsec_your_webhook_secret_here
# Bot-Specific Stripe Product IDs
# Create products in Stripe Dashboard: https://dashboard.stripe.com/products
SMARTCONTRACT_DEPLOY_PRICE_ID=price_your_deploy_price_id_here
SMARTCONTRACT_AUDIT_PRICE_ID=price_your_audit_price_id_here
# Server Configuration
PORT=3000
DEPLOY_BOT_PORT=3000
AUDIT_BOT_PORT=3001
NODE_ENV=development
# Database Configuration (optional - for storing subscription data)
DATABASE_URL=postgresql://user:password@localhost:5432/smartbrain
# GitHub Configuration (for bot integration)
GITHUB_TOKEN=ghp_your_github_token_here
GITHUB_WEBHOOK_SECRET=your_webhook_secret_here