24 lines
783 B
Bash
24 lines
783 B
Bash
# Synapsis local development environment
|
|
# Copy to .env and adjust values for your machine.
|
|
|
|
# Required: local database
|
|
DATABASE_URL=postgres://postgres:postgres@localhost:5432/synapsis
|
|
|
|
# Required: used for sessions, node key encryption, and bot API key encryption
|
|
AUTH_SECRET=replace-with-a-long-random-secret
|
|
|
|
# Required for admin access. Register with one of these emails locally.
|
|
ADMIN_EMAILS=admin@example.com
|
|
|
|
# Recommended: local node identity
|
|
NEXT_PUBLIC_NODE_DOMAIN=localhost:3000
|
|
NEXT_PUBLIC_APP_URL=http://localhost:3000
|
|
|
|
# Optional: node metadata shown before a node record exists in the database
|
|
# NEXT_PUBLIC_NODE_NAME=Synapsis Local
|
|
# NEXT_PUBLIC_NODE_DESCRIPTION=Local development node
|
|
# NEXT_PUBLIC_ACCENT_COLOR=#FFFFFF
|
|
|
|
# Optional: bot limits
|
|
# BOT_MAX_PER_USER=5
|