mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
49 lines
985 B
Plaintext
49 lines
985 B
Plaintext
############
|
|
# Secrets
|
|
# YOU MUST CHANGE THESE BEFORE GOING INTO PRODUCTION
|
|
############
|
|
|
|
POSTGRES_PASSWORD=your-super-secret-and-long-postgres-password
|
|
JWT_SECRET=your-super-secret-jwt-token-with-at-least-32-characters-long
|
|
|
|
|
|
############
|
|
# Database - You can change these to any PostgreSQL database that has logical replication enabled.
|
|
############
|
|
|
|
POSTGRES_HOST=db
|
|
POSTGRES_DB=postgres
|
|
POSTGRES_PORT=5432
|
|
# default user is postgres
|
|
|
|
|
|
############
|
|
# Auth - Native authentication configuration
|
|
############
|
|
|
|
SITE_URL=http://localhost:3000
|
|
|
|
# JWT token configuration
|
|
ACCESS_TOKEN_EXPIRE_MINUTES=15
|
|
REFRESH_TOKEN_EXPIRE_DAYS=7
|
|
JWT_ISSUER=autogpt-platform
|
|
|
|
# Google OAuth (optional)
|
|
GOOGLE_CLIENT_ID=
|
|
GOOGLE_CLIENT_SECRET=
|
|
|
|
|
|
############
|
|
# Email configuration (optional)
|
|
############
|
|
|
|
SMTP_HOST=
|
|
SMTP_PORT=587
|
|
SMTP_USER=
|
|
SMTP_PASS=
|
|
SMTP_FROM_EMAIL=noreply@example.com
|
|
|
|
|
|
# Docker socket location - this value will differ depending on your OS
|
|
DOCKER_SOCKET_LOCATION=/var/run/docker.sock
|