Files
Synapsis/.env.example
T
AskIt 52e7360c1f chore(config): Remove PORT environment variable configuration
- Remove PORT environment variable comment from .env.example
- Update start script to use hardcoded port 3000 instead of environment variable
- Simplify server configuration by removing optional PORT override
2026-01-26 00:27:53 +01:00

30 lines
873 B
Bash

# ===========================================
# Synapsis Environment Configuration
# ===========================================
# Copy this file to .env and fill in your values
# 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