Files
Synapsis/.env.example
T
AskIt f1c94069fd chore(config,admin,api): Update default accent color to white and add PORT environment variable
- Change default accent color from #00D4AA (teal) to #FFFFFF (white) across all components
- Update AccentColorContext default state to use white accent color
- Update admin page form defaults and placeholders to reflect new accent color
- Update node API endpoint default accent color response
- Add optional PORT environment variable configuration to .env.example with default value of 3000
- Standardize branding color scheme for consistency across the application
2026-01-26 00:01:51 +01:00

33 lines
929 B
Bash

# ===========================================
# Synapsis Environment Configuration
# ===========================================
# Copy this file to .env and fill in your values
# Server Port (Optional, defaults to 3000)
# PORT=3000
# Database (Required)
DATABASE_URL=postgresql://user:password@localhost:5432/synapsis
# Authentication (Required)
# Generate with: openssl rand -hex 32
AUTH_SECRET=your-secret-key-here
# Node Configuration (Required)
NEXT_PUBLIC_NODE_DOMAIN=your-domain.com
# Admin Users (Required)
# Comma-separated list of email addresses that have admin access
ADMIN_EMAILS=admin@example.com
# S3-Compatible Storage (Required for media uploads)
STORAGE_ENDPOINT=https://s3.your-provider.com
STORAGE_REGION=us-east-1
STORAGE_BUCKET=synapsis
STORAGE_ACCESS_KEY=your-access-key
STORAGE_SECRET_KEY=your-secret-key
STORAGE_PUBLIC_BASE_URL=https://cdn.your-domain.com
# Optional Settings
# BOT_MAX_PER_USER=5